HuggingFaceH4/ultrafeedback_binarized
Viewer • Updated • 187k • 14.4k • 334
How to use tanliboy/lambda-llama-3-8b-ipo-test with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="tanliboy/lambda-llama-3-8b-ipo-test")
messages = [
{"role": "user", "content": "Who are you?"},
]
pipe(messages) # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("tanliboy/lambda-llama-3-8b-ipo-test")
model = AutoModelForCausalLM.from_pretrained("tanliboy/lambda-llama-3-8b-ipo-test")
messages = [
{"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
messages,
add_generation_prompt=True,
tokenize=True,
return_dict=True,
return_tensors="pt",
).to(model.device)
outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))How to use tanliboy/lambda-llama-3-8b-ipo-test with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "tanliboy/lambda-llama-3-8b-ipo-test"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "tanliboy/lambda-llama-3-8b-ipo-test",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker model run hf.co/tanliboy/lambda-llama-3-8b-ipo-test
How to use tanliboy/lambda-llama-3-8b-ipo-test with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "tanliboy/lambda-llama-3-8b-ipo-test" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "tanliboy/lambda-llama-3-8b-ipo-test",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker run --gpus all \
--shm-size 32g \
-p 30000:30000 \
-v ~/.cache/huggingface:/root/.cache/huggingface \
--env "HF_TOKEN=<secret>" \
--ipc=host \
lmsysorg/sglang:latest \
python3 -m sglang.launch_server \
--model-path "tanliboy/lambda-llama-3-8b-ipo-test" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "tanliboy/lambda-llama-3-8b-ipo-test",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'How to use tanliboy/lambda-llama-3-8b-ipo-test with Docker Model Runner:
docker model run hf.co/tanliboy/lambda-llama-3-8b-ipo-test
This model is a fine-tuned version of meta-llama/Meta-Llama-3.1-8B-Instruct on the HuggingFaceH4/ultrafeedback_binarized and the tanliboy/orca_dpo_pairs datasets. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Rewards/chosen | Rewards/rejected | Rewards/accuracies | Rewards/margins | Logps/rejected | Logps/chosen | Logits/rejected | Logits/chosen |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 1.1749 | 0.1744 | 100 | 1.0763 | -0.1732 | -0.3120 | 0.7892 | 0.1388 | -2.4465 | -2.0638 | -2.5676 | -2.5133 |
| 0.9802 | 0.3489 | 200 | 0.9501 | -0.3184 | -0.5302 | 0.8012 | 0.2118 | -2.9922 | -2.4269 | -2.7873 | -2.7230 |
| 0.9548 | 0.5233 | 300 | 0.9136 | -0.3761 | -0.6028 | 0.8163 | 0.2267 | -3.1736 | -2.5710 | -2.8788 | -2.8087 |
| 0.9834 | 0.6978 | 400 | 0.9041 | -0.3384 | -0.5537 | 0.8042 | 0.2153 | -3.0509 | -2.4770 | -2.9371 | -2.8667 |
| 0.9967 | 0.8722 | 500 | 0.8938 | -0.3750 | -0.6076 | 0.7892 | 0.2326 | -3.1855 | -2.5684 | -3.0293 | -2.9592 |