HuggingFaceH4/ultrachat_200k
Viewer • Updated • 515k • 91.7k • 878
How to use HoangTran223/SPACE_Qwen3-4B with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="HoangTran223/SPACE_Qwen3-4B") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("HoangTran223/SPACE_Qwen3-4B", device_map="auto")How to use HoangTran223/SPACE_Qwen3-4B with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "HoangTran223/SPACE_Qwen3-4B"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "HoangTran223/SPACE_Qwen3-4B",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/HoangTran223/SPACE_Qwen3-4B
How to use HoangTran223/SPACE_Qwen3-4B with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "HoangTran223/SPACE_Qwen3-4B" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "HoangTran223/SPACE_Qwen3-4B",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'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 "HoangTran223/SPACE_Qwen3-4B" \
--host 0.0.0.0 \
--port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "HoangTran223/SPACE_Qwen3-4B",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use HoangTran223/SPACE_Qwen3-4B with Docker Model Runner:
docker model run hf.co/HoangTran223/SPACE_Qwen3-4B
Self-play SPACE (Wang et al., NeurIPS 2025) run on Qwen3-4B SFT
(HoangTran223/qwen3_4b_sft_ultrachat200k_20260818_170154).
HuggingFaceH4/ultrachat_200kmu=1.0), RMSProp, batch 2 × grad accum 2, max_length=10245e-7 (ite0–1), 1e-7 (ite2+)Load a finished iteration with:
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "HoangTran223/SPACE_Qwen3-4B"
rev = "ite1" # or ite0; ite2/LATEST is an in-progress snapshot
tok = AutoTokenizer.from_pretrained(f"{model_id}/{rev}")
model = AutoModelForCausalLM.from_pretrained(f"{model_id}/{rev}")
ite0/, ite1/: finished checkpoints + generated train.jsonlite2/: in-progress snapshot (LATEST/ mid-training) + generated train.jsonldata/Ultrachat50k/train.jsonl: prompts used for generationscripts/SPACE_full_qwen3_4b.sh: launch scriptlogs/: wandb offline runs, Hydra configs, tmux stdout