Text Generation
Transformers
Safetensors
English
qwen3
dpo
unsloth
qwen
alignment
conversational
text-generation-inference
Instructions to use KS150/testDPO with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use KS150/testDPO with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="KS150/testDPO") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("KS150/testDPO") model = AutoModelForCausalLM.from_pretrained("KS150/testDPO") 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]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use KS150/testDPO with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "KS150/testDPO" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "KS150/testDPO", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/KS150/testDPO
- SGLang
How to use KS150/testDPO with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "KS150/testDPO" \ --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": "KS150/testDPO", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
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 "KS150/testDPO" \ --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": "KS150/testDPO", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio new
How to use KS150/testDPO with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for KS150/testDPO to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for KS150/testDPO to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for KS150/testDPO to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="KS150/testDPO", max_seq_length=2048, ) - Docker Model Runner
How to use KS150/testDPO with Docker Model Runner:
docker model run hf.co/KS150/testDPO
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,21 +1,63 @@
|
|
| 1 |
---
|
| 2 |
-
base_model:
|
| 3 |
-
|
| 4 |
-
-
|
| 5 |
-
- transformers
|
| 6 |
-
- unsloth
|
| 7 |
-
- qwen3
|
| 8 |
-
license: apache-2.0
|
| 9 |
language:
|
| 10 |
- en
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
-
|
| 16 |
-
- **License:** apache-2.0
|
| 17 |
-
- **Finetuned from model :** unsloth/qwen3-4b-instruct-2507-unsloth-bnb-4bit
|
| 18 |
|
| 19 |
-
|
| 20 |
|
| 21 |
-
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model: Qwen/Qwen3-4B-Instruct-2507
|
| 3 |
+
datasets:
|
| 4 |
+
- u-10bei/dpo-dataset-qwen-cot
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
language:
|
| 6 |
- en
|
| 7 |
+
license: apache-2.0
|
| 8 |
+
library_name: transformers
|
| 9 |
+
pipeline_tag: text-generation
|
| 10 |
+
tags:
|
| 11 |
+
- dpo
|
| 12 |
+
- unsloth
|
| 13 |
+
- qwen
|
| 14 |
+
- alignment
|
| 15 |
---
|
| 16 |
|
| 17 |
+
# qwen3-4b-dpo-qwen-cot-merged
|
| 18 |
+
|
| 19 |
+
This model is a fine-tuned version of **Qwen/Qwen3-4B-Instruct-2507** using **Direct Preference Optimization (DPO)** via the **Unsloth** library.
|
| 20 |
+
|
| 21 |
+
This repository contains the **full-merged 16-bit weights**. No adapter loading is required.
|
| 22 |
+
|
| 23 |
+
## Training Objective
|
| 24 |
+
This model has been optimized using DPO to align its responses with preferred outputs, focusing on improving reasoning (Chain-of-Thought) and structured response quality based on the provided preference dataset.
|
| 25 |
+
|
| 26 |
+
## Training Configuration
|
| 27 |
+
- **Base model**: Qwen/Qwen3-4B-Instruct-2507
|
| 28 |
+
- **Method**: DPO (Direct Preference Optimization)
|
| 29 |
+
- **Epochs**: 3
|
| 30 |
+
- **Learning rate**: 7e-04
|
| 31 |
+
- **Beta**: 0.1
|
| 32 |
+
- **Max sequence length**: 256
|
| 33 |
+
- **LoRA Config**: r=8, alpha=16 (merged into base)
|
| 34 |
+
|
| 35 |
+
## Usage
|
| 36 |
+
Since this is a merged model, you can use it directly with `transformers`.
|
| 37 |
+
|
| 38 |
+
```python
|
| 39 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 40 |
+
import torch
|
| 41 |
+
|
| 42 |
+
model_id = "your_id/your-repo-name"
|
| 43 |
+
|
| 44 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 45 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 46 |
+
model_id,
|
| 47 |
+
torch_dtype=torch.float16,
|
| 48 |
+
device_map="auto"
|
| 49 |
+
)
|
| 50 |
+
|
| 51 |
+
# Test inference
|
| 52 |
+
prompt = "Your question here"
|
| 53 |
+
inputs = tokenizer.apply_chat_template([{"role": "user", "content": prompt}], tokenize=True, add_generation_prompt=True, return_tensors="pt").to("cuda")
|
| 54 |
+
outputs = model.generate(**inputs, max_new_tokens=512)
|
| 55 |
+
print(tokenizer.decode(outputs[0]))
|
| 56 |
|
| 57 |
+
```
|
|
|
|
|
|
|
| 58 |
|
| 59 |
+
## Sources & License (IMPORTANT)
|
| 60 |
|
| 61 |
+
* **Training Data**: [u-10bei/dpo-dataset-qwen-cot]
|
| 62 |
+
* **License**: MIT License. (As per dataset terms).
|
| 63 |
+
* **Compliance**: Users must follow the original base model's license terms.
|