Text Generation
Transformers
Safetensors
qwen3
Generated from Trainer
trl-internal
trl
sft
trackio
conversational
text-generation-inference
Instructions to use edbeeching/Qwen3-4B-Base-SFT-tr5 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use edbeeching/Qwen3-4B-Base-SFT-tr5 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="edbeeching/Qwen3-4B-Base-SFT-tr5") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("edbeeching/Qwen3-4B-Base-SFT-tr5") model = AutoModelForCausalLM.from_pretrained("edbeeching/Qwen3-4B-Base-SFT-tr5") 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 Settings
- vLLM
How to use edbeeching/Qwen3-4B-Base-SFT-tr5 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "edbeeching/Qwen3-4B-Base-SFT-tr5" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "edbeeching/Qwen3-4B-Base-SFT-tr5", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/edbeeching/Qwen3-4B-Base-SFT-tr5
- SGLang
How to use edbeeching/Qwen3-4B-Base-SFT-tr5 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 "edbeeching/Qwen3-4B-Base-SFT-tr5" \ --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": "edbeeching/Qwen3-4B-Base-SFT-tr5", "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 "edbeeching/Qwen3-4B-Base-SFT-tr5" \ --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": "edbeeching/Qwen3-4B-Base-SFT-tr5", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use edbeeching/Qwen3-4B-Base-SFT-tr5 with Docker Model Runner:
docker model run hf.co/edbeeching/Qwen3-4B-Base-SFT-tr5
Training in progress, step 620
Browse files- README.md +2 -5
- config.json +1 -1
- generation_config.json +3 -1
- model.safetensors +1 -1
- training_args.bin +1 -1
README.md
CHANGED
|
@@ -4,11 +4,8 @@ library_name: transformers
|
|
| 4 |
model_name: Qwen3-4B-Base-SFT-tr5
|
| 5 |
tags:
|
| 6 |
- generated_from_trainer
|
| 7 |
-
- trackio
|
| 8 |
-
- sft
|
| 9 |
- trl
|
| 10 |
-
-
|
| 11 |
-
- trl-internal
|
| 12 |
licence: license
|
| 13 |
---
|
| 14 |
|
|
@@ -30,7 +27,7 @@ print(output["generated_text"])
|
|
| 30 |
|
| 31 |
## Training procedure
|
| 32 |
|
| 33 |
-
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/huggingface/imo-distillation/runs/
|
| 34 |
|
| 35 |
|
| 36 |
This model was trained with SFT.
|
|
|
|
| 4 |
model_name: Qwen3-4B-Base-SFT-tr5
|
| 5 |
tags:
|
| 6 |
- generated_from_trainer
|
|
|
|
|
|
|
| 7 |
- trl
|
| 8 |
+
- sft
|
|
|
|
| 9 |
licence: license
|
| 10 |
---
|
| 11 |
|
|
|
|
| 27 |
|
| 28 |
## Training procedure
|
| 29 |
|
| 30 |
+
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/huggingface/imo-distillation/runs/rwhiohbr)
|
| 31 |
|
| 32 |
|
| 33 |
This model was trained with SFT.
|
config.json
CHANGED
|
@@ -65,7 +65,7 @@
|
|
| 65 |
"sliding_window": null,
|
| 66 |
"tie_word_embeddings": true,
|
| 67 |
"transformers_version": "5.3.0.dev0",
|
| 68 |
-
"use_cache":
|
| 69 |
"use_sliding_window": false,
|
| 70 |
"vocab_size": 151936
|
| 71 |
}
|
|
|
|
| 65 |
"sliding_window": null,
|
| 66 |
"tie_word_embeddings": true,
|
| 67 |
"transformers_version": "5.3.0.dev0",
|
| 68 |
+
"use_cache": false,
|
| 69 |
"use_sliding_window": false,
|
| 70 |
"vocab_size": 151936
|
| 71 |
}
|
generation_config.json
CHANGED
|
@@ -1,6 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"do_sample": false,
|
| 3 |
-
"eos_token_id":
|
|
|
|
|
|
|
| 4 |
"max_new_tokens": 2048,
|
| 5 |
"pad_token_id": 151643,
|
| 6 |
"transformers_version": "5.3.0.dev0"
|
|
|
|
| 1 |
{
|
| 2 |
"do_sample": false,
|
| 3 |
+
"eos_token_id": [
|
| 4 |
+
151643
|
| 5 |
+
],
|
| 6 |
"max_new_tokens": 2048,
|
| 7 |
"pad_token_id": 151643,
|
| 8 |
"transformers_version": "5.3.0.dev0"
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 8044982080
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68f82c8594386b72e0be03c688f8a7c1c3b2d46ddb0a79d49888cb430b43940c
|
| 3 |
size 8044982080
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 7569
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6455c6ec9c97ef7bba70922931b589528f81f5237ba44cf493b1ed5856fe4135
|
| 3 |
size 7569
|