HuggingFaceH4/ultrafeedback_binarized
Viewer β’ Updated β’ 187k β’ 15k β’ 334
How to use tanliboy/lambda-qwen2.5-14b-dpo-test with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="tanliboy/lambda-qwen2.5-14b-dpo-test")
messages = [
{"role": "user", "content": "Who are you?"},
]
pipe(messages) # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("tanliboy/lambda-qwen2.5-14b-dpo-test")
model = AutoModelForCausalLM.from_pretrained("tanliboy/lambda-qwen2.5-14b-dpo-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-qwen2.5-14b-dpo-test with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "tanliboy/lambda-qwen2.5-14b-dpo-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-qwen2.5-14b-dpo-test",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker model run hf.co/tanliboy/lambda-qwen2.5-14b-dpo-test
How to use tanliboy/lambda-qwen2.5-14b-dpo-test with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "tanliboy/lambda-qwen2.5-14b-dpo-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-qwen2.5-14b-dpo-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-qwen2.5-14b-dpo-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-qwen2.5-14b-dpo-test",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'How to use tanliboy/lambda-qwen2.5-14b-dpo-test with Docker Model Runner:
docker model run hf.co/tanliboy/lambda-qwen2.5-14b-dpo-test
This model is a fine-tuned version of Qwen/Qwen2.5-14B-Instruct on the HuggingFaceH4/ultrafeedback_binarized dataset. 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0.5269 | 0.2094 | 100 | 0.5333 | -1.6756 | -2.3320 | 0.7000 | 0.6564 | -727.9815 | -657.6356 | -1.3952 | -1.3850 |
| 0.5086 | 0.4187 | 200 | 0.5044 | -2.0906 | -2.9287 | 0.7040 | 0.8381 | -787.6511 | -699.1298 | -1.2939 | -1.2773 |
| 0.4787 | 0.6281 | 300 | 0.4948 | -2.2927 | -3.1689 | 0.7320 | 0.8762 | -811.6696 | -719.3386 | -1.2846 | -1.2646 |
| 0.4825 | 0.8375 | 400 | 0.4924 | -2.4470 | -3.3410 | 0.7400 | 0.8939 | -828.8748 | -734.7765 | -1.2644 | -1.2477 |
Base model
Qwen/Qwen2.5-14B