Text Generation
Transformers
Safetensors
qwen3
axolotl
Generated from Trainer
conversational
text-generation-inference
Instructions to use AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1") model = AutoModelForCausalLM.from_pretrained("AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1") 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]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1
- SGLang
How to use AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1 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 "AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1" \ --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": "AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1", "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 "AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1" \ --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": "AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1 with Docker Model Runner:
docker model run hf.co/AiForgeMaster/Qwen3-4B-P3-TC-RSSFT-1
End of training
Browse files
README.md
CHANGED
|
@@ -5,6 +5,8 @@ base_model: AiForgeMaster/Qwen3-4B-P3-TC-1
|
|
| 5 |
tags:
|
| 6 |
- axolotl
|
| 7 |
- generated_from_trainer
|
|
|
|
|
|
|
| 8 |
model-index:
|
| 9 |
- name: Qwen3-4B-P3-TC-RSSFT-1
|
| 10 |
results: []
|
|
@@ -128,7 +130,7 @@ gc_steps: 100 # Run garbage collection every 100 steps
|
|
| 128 |
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="200" height="32"/>](https://wandb.ai/uskfoundation/ngpt-cpt/runs/azltguw6)
|
| 129 |
# Qwen3-4B-P3-TC-RSSFT-1
|
| 130 |
|
| 131 |
-
This model is a fine-tuned version of [AiForgeMaster/Qwen3-4B-P3-TC-1](https://huggingface.co/AiForgeMaster/Qwen3-4B-P3-TC-1) on
|
| 132 |
|
| 133 |
## Model description
|
| 134 |
|
|
@@ -158,6 +160,10 @@ The following hyperparameters were used during training:
|
|
| 158 |
- lr_scheduler_warmup_steps: 150
|
| 159 |
- training_steps: 312
|
| 160 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 161 |
### Framework versions
|
| 162 |
|
| 163 |
- Transformers 4.55.4
|
|
|
|
| 5 |
tags:
|
| 6 |
- axolotl
|
| 7 |
- generated_from_trainer
|
| 8 |
+
datasets:
|
| 9 |
+
- AiForgeMaster/glaiceai-natural-reasoning-10k
|
| 10 |
model-index:
|
| 11 |
- name: Qwen3-4B-P3-TC-RSSFT-1
|
| 12 |
results: []
|
|
|
|
| 130 |
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="200" height="32"/>](https://wandb.ai/uskfoundation/ngpt-cpt/runs/azltguw6)
|
| 131 |
# Qwen3-4B-P3-TC-RSSFT-1
|
| 132 |
|
| 133 |
+
This model is a fine-tuned version of [AiForgeMaster/Qwen3-4B-P3-TC-1](https://huggingface.co/AiForgeMaster/Qwen3-4B-P3-TC-1) on the AiForgeMaster/glaiceai-natural-reasoning-10k dataset.
|
| 134 |
|
| 135 |
## Model description
|
| 136 |
|
|
|
|
| 160 |
- lr_scheduler_warmup_steps: 150
|
| 161 |
- training_steps: 312
|
| 162 |
|
| 163 |
+
### Training results
|
| 164 |
+
|
| 165 |
+
|
| 166 |
+
|
| 167 |
### Framework versions
|
| 168 |
|
| 169 |
- Transformers 4.55.4
|