Instructions to use Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B
- SGLang
How to use Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B 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 "Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B" \ --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": "Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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 "Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B" \ --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": "Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Unsloth Studio
How to use Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B 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 Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B 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 Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B", max_seq_length=2048, ) - Docker Model Runner
How to use Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B with Docker Model Runner:
docker model run hf.co/Jackrong/DeepSeek-V4-Pro-Qwen3.5-9B
- ๐ค Collaboration & Training Support
- ๐ฌ 1. Distillation & Training Data
- ๐ 2. Benchmark Results
- ๐ ๏ธ 3. Generalization Beyond the Training Mix
- โ
4. Instruction Following & Output-Format Compliance
- ๐ฎ Game Showcase: Star Skip by Kyle
- ๐ฏ 5. Recommended Uses
- โ ๏ธ 6. Limitations
- ๐ 7. Resources, Acknowledgements & Citation
๐ค Collaboration & Training Support
๐ฌ 1. Distillation & Training Data
๐ 2. Benchmark Results
2.1 GSM8K
The NVFP4 checkpoint was evaluated on GSM8K four times, and the resulting scores were averaged. Its four-run mean accuracy is 95.28% under vLLM. In the comparison supplied with this release, the 9B student slightly exceeds the reported DeepSeek-V4-Pro teacher result and approaches the Llama-3.3-70B-Instruct reference.
| Model | Accuracy |
|---|---|
| MiMo-V2.5-Pro | 99.60% |
| Llama-3.1-405B-Instruct | 96.80% |
| Llama-3.3-70B-Instruct | 94.84% |
| DeepSeek-V4-Pro-Qwen3.5-9B | 95.28% |
| DeepSeek-V4-Pro | 92.60% |
| DeepSeek-V4-Pro-Qwen3.5-4B | 91.77% |
| DeepSeek-V3 | 89.30% |
2.2 MMLU-Pro: Math, Physics & Chemistry
Each model was evaluated on 500 questions from each of three MMLU-Pro subsetsโMath, Physics, and Chemistryโfor 1,500 questions per model. In this reported comparison, DeepSeek-V4-Pro-Qwen3.5-9B achieves the highest average at 90.53%. Its compact 4B sibling is now included alongside the Qwen and Claude Mythos-distilled references.
| Model | Evaluation Build | Math | Physics | Chemistry | Average |
|---|---|---|---|---|---|
| DeepSeek-V4-Pro-Qwen3.5-9B | MTP-Q8_0 GGUF | 92.40% | 89.40% | 89.80% | 90.53% |
| Qwen3.5-9B | MTP-Q8_0 GGUF | 90.60% | 89.00% | 89.20% | 89.60% |
| Claude Mythos-distilled 27B | MTP-Q8 GGUF | 88.40% | 87.60% | 82.60% | 86.20% |
| Claude Mythos-distilled 9B | MTP-Q8_0 GGUF | 86.00% | 78.60% | 78.60% | 81.07% |
| DeepSeek-V4-Pro-Qwen3.5-4B | MTP-Q8 GGUF | 80.40% | 74.20% | 74.80% | 76.47% |
+1.80 points in Math, +0.40 in Physics, +0.60 in Chemistry, and +0.93 average points.
500 questions per subset ยท 1,500 total per model ยท llama.cpp. The 9B rows use MTP-Q8_0 GGUF at 8K context, the 4B student uses MTP-Q8 GGUF at 64K context, and Claude Mythos-distilled 27B uses MTP-Q8 GGUF at 32K context.
2.3 Inference Efficiency
| Model | Accuracy | Avg. Reasoning Tokens / Question |
Median | Tokens / Correct Answer |
Correct Answers / 1M Tokens |
|---|---|---|---|---|---|
| DeepSeek-V4-Pro-Qwen3.5-9B | 90.53% | 2,858 | 676 | 3,157 | 316.8 |
| Qwen3.5-9B | 89.60% | 4,425 | 3,214 | 4,938 | 202.5 |
| Claude Mythos-distilled 9B | 81.07% | 3,310 | 639 | 4,083 | 244.9 |
๐ ๏ธ 3. Generalization Beyond the Training Mix
โ 4. Instruction Following & Output-Format Compliance
๐ฎ Game Showcase: Star Skip by Kyle
๐ฏ 5. Recommended Uses
- Mathematical problem solving and step-by-step derivation
- Physics, chemistry, and broader STEM question answering
- Structured reasoning and analytical instruction following
- Research on reasoning distillation and cross-domain SFT transfer
- Experimental tool-calling or programming workflows where outputs are independently validated
โ ๏ธ 6. Limitations
- This is an experimental 9B community model and remains subject to hallucinations, reasoning errors, and unstable behavior on difficult or underspecified tasks.
- The reported MMLU-Pro results are based on 500 randomly sampled questions from each of the Math, Physics, and Chemistry subsets, rather than the complete subsets; they are not a comprehensive capability or safety evaluation.
- GSM8K and MMLU-Pro used different inference builds and backends, so their scores should not be used to infer quantization equivalence.
- Programming and tool-use gains were observed without direct coding supervision but are described only as small, preliminary generalization gains.
- Users should independently verify high-stakes mathematical, scientific, or factual outputs.