Text Generation
Transformers
text-generation-inference
unsloth
qwen3_5
reasoning
distillation
deepseek
sft
rl
gspo
math
stem
tool-use
function-calling
mtp
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
Commit ·
737c3b3
0
Parent(s):
Current release snapshot
Browse files- .gitattributes +35 -0
- README.md +365 -0
.gitattributes
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,365 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/Qwen3.5-9B
|
| 3 |
+
tags:
|
| 4 |
+
- text-generation-inference
|
| 5 |
+
- transformers
|
| 6 |
+
- unsloth
|
| 7 |
+
- qwen3_5
|
| 8 |
+
- reasoning
|
| 9 |
+
- distillation
|
| 10 |
+
- deepseek
|
| 11 |
+
- sft
|
| 12 |
+
- math
|
| 13 |
+
- stem
|
| 14 |
+
- tool-use
|
| 15 |
+
- function-calling
|
| 16 |
+
- mtp
|
| 17 |
+
license: apache-2.0
|
| 18 |
+
language:
|
| 19 |
+
- en
|
| 20 |
+
- zh
|
| 21 |
+
- ko
|
| 22 |
+
- ja
|
| 23 |
+
- es
|
| 24 |
+
- ru
|
| 25 |
+
pipeline_tag: text-generation
|
| 26 |
+
---
|
| 27 |
+
|
| 28 |
+
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; border: 1px solid #cbd5e1; border-radius: 16px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.05); overflow: hidden; background: #ffffff; margin-bottom: 30px;">
|
| 29 |
+
<div style="background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%); padding: 24px; color: white;">
|
| 30 |
+
<div style="display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;">
|
| 31 |
+
<h1 style="margin: 0; font-size: 26px; font-weight: 800; color: white; border: none;">🧠 DeepSeek-V4-Pro-Qwen3.5-9B</h1>
|
| 32 |
+
<span style="background: #10b981; color: white; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;">Distillation Release</span>
|
| 33 |
+
</div>
|
| 34 |
+
<p style="margin: 8px 0 0 0; font-size: 14px; color: #ddd6fe; font-weight: 500;">A compact 9B reasoning model distilled from DeepSeek-V4-Pro in Max Effect mode</p>
|
| 35 |
+
</div>
|
| 36 |
+
<div style="display: flex; gap: 8px; flex-wrap: wrap; padding: 12px 24px; background: #f8fafc; border-bottom: 1px solid #e2e8f0;">
|
| 37 |
+
<span style="background: #f3e8ff; color: #6b21a8; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; border: 1px solid #e9d5ff;">🔬 DeepSeek-V4-Pro Distillation</span>
|
| 38 |
+
<span style="background: #dbeafe; color: #1e40af; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; border: 1px solid #bfdbfe;">🧠 9B Parameters</span>
|
| 39 |
+
<span style="background: #e0f2fe; color: #0369a1; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; border: 1px solid #bae6fd;">📐 ~250K Math & STEM Samples</span>
|
| 40 |
+
<span style="background: #d1fae5; color: #065f46; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; border: 1px solid #a7f3d0;">⚡ MTP & NVFP4 Evaluated</span>
|
| 41 |
+
</div>
|
| 42 |
+
<div style="padding: 24px; display: flex; flex-direction: column; gap: 20px;">
|
| 43 |
+
<div style="background: #f5f3ff; border-left: 5px solid #7c3aed; padding: 16px; border-radius: 0 8px 8px 0;">
|
| 44 |
+
<h3 style="margin: 0 0 8px 0; font-size: 15px; color: #6d28d9; font-weight: 700;">💡 What is DeepSeek-V4-Pro-Qwen3.5-9B?</h3>
|
| 45 |
+
<p style="margin: 0; font-size: 13px; color: #334155; line-height: 1.7;"><b>DeepSeek-V4-Pro-Qwen3.5-9B</b> is a reasoning-focused fine-tune of <b>Qwen3.5-9B</b>, distilled from responses generated by <b>DeepSeek-V4-Pro in Max Effect mode</b>. The release concentrates its supervised signal on mathematics and STEM problem solving while preserving the efficiency and practical deployability of the 9B parameter class.</p>
|
| 46 |
+
</div>
|
| 47 |
+
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 15px;">
|
| 48 |
+
<div style="border: 1px solid #e2e8f0; padding: 14px; border-radius: 8px; background: #fafafa;">
|
| 49 |
+
<span style="font-weight: 700; color: #6b21a8; font-size: 12px; display: block; margin-bottom: 6px; text-transform: uppercase;">🧩 Structured Reasoning</span>
|
| 50 |
+
<span style="font-size: 13px; color: #4b5563; line-height: 1.5;">Learns rigorous problem decomposition and multi-step solution patterns from a strong teacher.</span>
|
| 51 |
+
</div>
|
| 52 |
+
<div style="border: 1px solid #e2e8f0; padding: 14px; border-radius: 8px; background: #fafafa;">
|
| 53 |
+
<span style="font-weight: 700; color: #6b21a8; font-size: 12px; display: block; margin-bottom: 6px; text-transform: uppercase;">📐 Math & STEM Focus</span>
|
| 54 |
+
<span style="font-size: 13px; color: #4b5563; line-height: 1.5;">Trained on approximately 250,000 samples centered on mathematics and scientific reasoning.</span>
|
| 55 |
+
</div>
|
| 56 |
+
<div style="border: 1px solid #e2e8f0; padding: 14px; border-radius: 8px; background: #fafafa;">
|
| 57 |
+
<span style="font-weight: 700; color: #6b21a8; font-size: 12px; display: block; margin-bottom: 6px; text-transform: uppercase;">🧪 Cross-Domain Transfer</span>
|
| 58 |
+
<span style="font-size: 13px; color: #4b5563; line-height: 1.5;">Shows small post-training gains in programming and tool use despite receiving no coding-specific SFT data.</span>
|
| 59 |
+
</div>
|
| 60 |
+
<div style="border: 1px solid #e2e8f0; padding: 14px; border-radius: 8px; background: #fafafa;">
|
| 61 |
+
<span style="font-weight: 700; color: #6b21a8; font-size: 12px; display: block; margin-bottom: 6px; text-transform: uppercase;">⚙️ Practical Deployment</span>
|
| 62 |
+
<span style="font-size: 13px; color: #4b5563; line-height: 1.5;">Evaluated through vLLM NVFP4 and llama.cpp MTP-Q8_0 deployment paths.</span>
|
| 63 |
+
</div>
|
| 64 |
+
</div>
|
| 65 |
+
</div>
|
| 66 |
+
</div>
|
| 67 |
+
|
| 68 |
+
## 🤝 Collaboration & Training Support
|
| 69 |
+
|
| 70 |
+
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; margin-bottom: 28px;">
|
| 71 |
+
<div style="border: 1px solid #a7f3d0; border-radius: 12px; overflow: hidden; background: #ffffff; box-shadow: 0 2px 4px rgba(0,0,0,0.02);">
|
| 72 |
+
<div style="background: linear-gradient(135deg, #10b981 0%, #047857 100%); padding: 12px 16px; color: white; font-weight: 700; font-size: 14px;"><span>🧪</span> Hardware Cooperation & Joint Collaboration</div>
|
| 73 |
+
<div style="padding: 16px; font-size: 13px; color: #334155; line-height: 1.7;">
|
| 74 |
+
This project is built in close collaboration with hardware engineer <b>Kyle Hessling</b>, whose infrastructure, training support, and evaluation assistance helped make this release possible.
|
| 75 |
+
<div style="margin-top: 10px;">👉 Follow his hardware and model-training updates on X / Twitter: <a href="https://x.com/KyleHessling1" target="_blank" style="color: #047857; text-decoration: none; font-weight: 700;">@KyleHessling1</a></div>
|
| 76 |
+
</div>
|
| 77 |
+
</div>
|
| 78 |
+
<div style="border: 1px solid #ddd6fe; border-radius: 12px; overflow: hidden; background: #ffffff; box-shadow: 0 2px 4px rgba(0,0,0,0.02);">
|
| 79 |
+
<div style="background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); padding: 12px 16px; color: white; font-weight: 700; font-size: 14px;"><span>🦥</span> Fine-tuning Framework (Unsloth)</div>
|
| 80 |
+
<div style="padding: 16px; font-size: 13px; color: #334155; line-height: 1.7;">
|
| 81 |
+
The model training workflow is accelerated and memory-optimized with <b>Unsloth</b>. Special thanks to the Unsloth team for making efficient large-model fine-tuning more accessible.
|
| 82 |
+
<div style="margin-top: 10px;">👉 Documentation and fine-tuning guidance: <a href="https://unsloth.ai/docs" target="_blank" style="color: #7c3aed; text-decoration: none; font-weight: 700;">unsloth.ai/docs</a></div>
|
| 83 |
+
</div>
|
| 84 |
+
</div>
|
| 85 |
+
</div>
|
| 86 |
+
|
| 87 |
+
## 🔬 1. Distillation & Training Data
|
| 88 |
+
|
| 89 |
+
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; border: 1px solid #cbd5e1; border-radius: 12px; overflow: hidden; background: #ffffff; box-shadow: 0 2px 4px rgba(0,0,0,0.02); margin-bottom: 28px;">
|
| 90 |
+
<div style="background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%); padding: 13px 17px; color: white; font-weight: 700; font-size: 14px;">🧬 From DeepSeek-V4-Pro to a Compact 9B Student</div>
|
| 91 |
+
<div style="padding: 18px; font-size: 13px; color: #334155; line-height: 1.75;">
|
| 92 |
+
<p style="margin: 0 0 12px 0;">The teacher data for this release was generated with <b>DeepSeek-V4-Pro (Max Effect)</b>. Approximately <b>250,000 mathematics and STEM samples</b> were used for supervised fine-tuning, with an emphasis on structured derivation, domain-aware problem decomposition, and reliable final-answer construction.</p>
|
| 93 |
+
<div style="background: #f0f9ff; border-left: 4px solid #0284c7; border-radius: 0 8px 8px 0; padding: 12px 14px; color: #0c4a6e;">
|
| 94 |
+
<b>Special training note:</b> no coding data was included in this fine-tuning run. Nevertheless, later testing showed a small generalization improvement in programming and tool-calling tasks. This should be interpreted as cross-domain transfer from stronger reasoning structure—not as evidence that the model received direct coding supervision.
|
| 95 |
+
</div>
|
| 96 |
+
</div>
|
| 97 |
+
</div>
|
| 98 |
+
|
| 99 |
+
## 📊 2. Benchmark Results
|
| 100 |
+
|
| 101 |
+
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; border: 1px solid #cbd5e1; border-radius: 16px; overflow: hidden; background: #ffffff; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); margin-bottom: 28px;">
|
| 102 |
+
<div style="background: linear-gradient(135deg, #0f766e 0%, #0369a1 100%); padding: 20px; color: white;">
|
| 103 |
+
<h3 style="margin: 0; font-size: 20px; font-weight: 700; color: white; border: none;">⚡ Performance Snapshot</h3>
|
| 104 |
+
<p style="margin: 5px 0 0 0; font-size: 13px; color: #cffafe;">Strong grade-school mathematics performance and the best average MMLU-Pro result among the tested 9B baselines.</p>
|
| 105 |
+
</div>
|
| 106 |
+
<div style="padding: 22px;">
|
| 107 |
+
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 15px;">
|
| 108 |
+
<div style="border: 1px solid #bae6fd; padding: 16px; border-radius: 10px; background: #f0f9ff; text-align: center;">
|
| 109 |
+
<span style="font-size: 11px; font-weight: 700; color: #0369a1; text-transform: uppercase; display: block; margin-bottom: 6px;">GSM8K</span>
|
| 110 |
+
<span style="font-size: 25px; font-weight: 800; color: #0c4a6e; display: block;">94.50%</span>
|
| 111 |
+
<span style="font-size: 11px; color: #64748b;">4-run average · NVFP4 · vLLM</span>
|
| 112 |
+
</div>
|
| 113 |
+
<div style="border: 1px solid #ddd6fe; padding: 16px; border-radius: 10px; background: #f5f3ff; text-align: center;">
|
| 114 |
+
<span style="font-size: 11px; font-weight: 700; color: #6d28d9; text-transform: uppercase; display: block; margin-bottom: 6px;">MMLU-Pro Math</span>
|
| 115 |
+
<span style="font-size: 25px; font-weight: 800; color: #4c1d95; display: block;">92.40%</span>
|
| 116 |
+
<span style="font-size: 11px; color: #64748b;">MTP-Q8_0 GGUF · 8K</span>
|
| 117 |
+
</div>
|
| 118 |
+
<div style="border: 1px solid #a7f3d0; padding: 16px; border-radius: 10px; background: #f0fdf4; text-align: center;">
|
| 119 |
+
<span style="font-size: 11px; font-weight: 700; color: #047857; text-transform: uppercase; display: block; margin-bottom: 6px;">MMLU-Pro Average</span>
|
| 120 |
+
<span style="font-size: 25px; font-weight: 800; color: #065f46; display: block;">90.53%</span>
|
| 121 |
+
<span style="font-size: 11px; color: #64748b;">Math · Physics · Chemistry</span>
|
| 122 |
+
</div>
|
| 123 |
+
<div style="border: 1px solid #fde68a; padding: 16px; border-radius: 10px; background: #fffbeb; text-align: center;">
|
| 124 |
+
<span style="font-size: 11px; font-weight: 700; color: #b45309; text-transform: uppercase; display: block; margin-bottom: 6px;">Gain vs Base</span>
|
| 125 |
+
<span style="font-size: 25px; font-weight: 800; color: #92400e; display: block;">+0.93</span>
|
| 126 |
+
<span style="font-size: 11px; color: #64748b;">MMLU-Pro average points</span>
|
| 127 |
+
</div>
|
| 128 |
+
</div>
|
| 129 |
+
</div>
|
| 130 |
+
</div>
|
| 131 |
+
|
| 132 |
+
### 2.1 GSM8K
|
| 133 |
+
|
| 134 |
+
The NVFP4 checkpoint was evaluated on GSM8K **four times**, and the resulting scores were averaged. Its **four-run mean accuracy is 94.50%** 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.
|
| 135 |
+
|
| 136 |
+
<div style="overflow-x: auto; margin-bottom: 24px;">
|
| 137 |
+
<table style="display: table; width: 100%; table-layout: fixed; border-collapse: collapse; overflow-wrap: anywhere; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 12px; line-height: 1.25; border: 1px solid #cbd5e1;">
|
| 138 |
+
<thead>
|
| 139 |
+
<tr style="background: #eff6ff;">
|
| 140 |
+
<th style="width: 72%; padding: 6px 10px !important; border-bottom: 2px solid #0284c7; text-align: left; color: #0369a1;">Model</th>
|
| 141 |
+
<th style="width: 28%; padding: 6px 10px !important; border-bottom: 2px solid #0284c7; text-align: right; color: #0369a1;">Accuracy</th>
|
| 142 |
+
</tr>
|
| 143 |
+
</thead>
|
| 144 |
+
<tbody>
|
| 145 |
+
<tr><td style="padding: 6px 10px !important; border-bottom: 1px solid #e2e8f0;"><b>MiMo-V2.5-Pro</b></td><td style="padding: 6px 10px !important; border-bottom: 1px solid #e2e8f0; text-align: right;"><b>99.60%</b></td></tr>
|
| 146 |
+
<tr><td style="padding: 6px 10px !important; border-bottom: 1px solid #e2e8f0;">Llama-3.1-405B-Instruct</td><td style="padding: 6px 10px !important; border-bottom: 1px solid #e2e8f0; text-align: right;">96.80%</td></tr>
|
| 147 |
+
<tr><td style="padding: 6px 10px !important; border-bottom: 1px solid #e2e8f0;">Llama-3.3-70B-Instruct</td><td style="padding: 6px 10px !important; border-bottom: 1px solid #e2e8f0; text-align: right;">94.84%</td></tr>
|
| 148 |
+
<tr style="background: #f5f3ff;"><td style="padding: 6px 10px !important; border-bottom: 1px solid #ddd6fe; color: #5b21b6;"><b>DeepSeek-V4-Pro-Qwen3.5-9B</b></td><td style="padding: 6px 10px !important; border-bottom: 1px solid #ddd6fe; text-align: right; color: #5b21b6;"><b>94.50%</b></td></tr>
|
| 149 |
+
<tr><td style="padding: 6px 10px !important; border-bottom: 1px solid #e2e8f0;">DeepSeek-V4-Pro</td><td style="padding: 6px 10px !important; border-bottom: 1px solid #e2e8f0; text-align: right;">92.60%</td></tr>
|
| 150 |
+
<tr><td style="padding: 6px 10px !important;">DeepSeek-V3</td><td style="padding: 6px 10px !important; text-align: right;">89.30%</td></tr>
|
| 151 |
+
</tbody>
|
| 152 |
+
</table>
|
| 153 |
+
</div>
|
| 154 |
+
|
| 155 |
+
<div style="background: #f8fafc; border-left: 4px solid #64748b; padding: 11px 14px; border-radius: 0 8px 8px 0; color: #475569; font-size: 12px; line-height: 1.6; margin-bottom: 26px;"><b>Evaluation configuration:</b> DeepSeek-V4-Pro-Qwen3.5-9B-NVFP4 · NVFP4 (FP8 E4M3) · vLLM · four GSM8K test runs, with the final 94.50% reported as their arithmetic mean. The reference scores for the other models shown above are sourced from the <a href="https://huggingface.co/datasets/openai/gsm8k" style="color: #0369a1; font-weight: 700; text-decoration: none;">openai/gsm8k repository</a>.</div>
|
| 156 |
+
|
| 157 |
+
### 2.2 MMLU-Pro: Math, Physics & Chemistry
|
| 158 |
+
|
| 159 |
+
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.
|
| 160 |
+
|
| 161 |
+
<div style="overflow-x: auto; margin-bottom: 20px;">
|
| 162 |
+
<table style="display: table; width: 100%; min-width: 760px; table-layout: auto; border-collapse: collapse; overflow-wrap: anywhere; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 12px; line-height: 1.25; border: 1px solid #cbd5e1;">
|
| 163 |
+
<thead>
|
| 164 |
+
<tr style="background: #f5f3ff;">
|
| 165 |
+
<th style="padding: 10px 12px; border-bottom: 2px solid #7c3aed; text-align: left; color: #6d28d9;">Model</th>
|
| 166 |
+
<th style="padding: 10px 12px; border-bottom: 2px solid #7c3aed; text-align: left; color: #6d28d9;">Evaluation Build</th>
|
| 167 |
+
<th style="padding: 10px 12px; border-bottom: 2px solid #7c3aed; text-align: right; color: #6d28d9;">Math</th>
|
| 168 |
+
<th style="padding: 10px 12px; border-bottom: 2px solid #7c3aed; text-align: right; color: #6d28d9;">Physics</th>
|
| 169 |
+
<th style="padding: 10px 12px; border-bottom: 2px solid #7c3aed; text-align: right; color: #6d28d9;">Chemistry</th>
|
| 170 |
+
<th style="padding: 10px 12px; border-bottom: 2px solid #7c3aed; text-align: right; color: #6d28d9;">Average</th>
|
| 171 |
+
</tr>
|
| 172 |
+
</thead>
|
| 173 |
+
<tbody>
|
| 174 |
+
<tr style="background: #f5f3ff;">
|
| 175 |
+
<td style="padding: 10px 12px; border-bottom: 1px solid #ddd6fe; color: #5b21b6;"><b>DeepSeek-V4-Pro-Qwen3.5-9B</b></td>
|
| 176 |
+
<td style="padding: 10px 12px; border-bottom: 1px solid #ddd6fe;">MTP-Q8_0 GGUF</td>
|
| 177 |
+
<td style="padding: 10px 12px; border-bottom: 1px solid #ddd6fe; text-align: right;"><b>92.40%</b></td>
|
| 178 |
+
<td style="padding: 10px 12px; border-bottom: 1px solid #ddd6fe; text-align: right;"><b>89.40%</b></td>
|
| 179 |
+
<td style="padding: 10px 12px; border-bottom: 1px solid #ddd6fe; text-align: right;"><b>89.80%</b></td>
|
| 180 |
+
<td style="padding: 10px 12px; border-bottom: 1px solid #ddd6fe; text-align: right; color: #5b21b6;"><b>90.53%</b></td>
|
| 181 |
+
</tr>
|
| 182 |
+
<tr>
|
| 183 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0;">Qwen3.5-9B</td>
|
| 184 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0;">MTP-Q8_0 GGUF</td>
|
| 185 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">90.60%</td>
|
| 186 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">89.00%</td>
|
| 187 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">89.20%</td>
|
| 188 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">89.60%</td>
|
| 189 |
+
</tr>
|
| 190 |
+
<tr>
|
| 191 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0;">Claude Mythos-distilled 27B</td>
|
| 192 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0;">MTP-Q8 GGUF</td>
|
| 193 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">88.40%</td>
|
| 194 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">87.60%</td>
|
| 195 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">82.60%</td>
|
| 196 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">86.20%</td>
|
| 197 |
+
</tr>
|
| 198 |
+
<tr>
|
| 199 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0;">Claude Mythos-distilled 9B</td>
|
| 200 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0;">MTP-Q8_0 GGUF</td>
|
| 201 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">86.00%</td>
|
| 202 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">78.60%</td>
|
| 203 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">78.60%</td>
|
| 204 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">81.07%</td>
|
| 205 |
+
</tr>
|
| 206 |
+
<tr style="background: #f0fdf4;">
|
| 207 |
+
<td style="padding: 10px 12px; color: #065f46;"><b>DeepSeek-V4-Pro-Qwen3.5-4B</b></td>
|
| 208 |
+
<td style="padding: 10px 12px;">MTP-Q8 GGUF</td>
|
| 209 |
+
<td style="padding: 10px 12px; text-align: right;"><b>80.40%</b></td>
|
| 210 |
+
<td style="padding: 10px 12px; text-align: right;"><b>74.20%</b></td>
|
| 211 |
+
<td style="padding: 10px 12px; text-align: right;"><b>74.80%</b></td>
|
| 212 |
+
<td style="padding: 10px 12px; text-align: right; color: #065f46;"><b>76.47%</b></td>
|
| 213 |
+
</tr>
|
| 214 |
+
</tbody>
|
| 215 |
+
</table>
|
| 216 |
+
</div>
|
| 217 |
+
|
| 218 |
+
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-bottom: 28px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
|
| 219 |
+
<div style="border: 1px solid #a7f3d0; border-radius: 10px; background: #f0fdf4; padding: 14px; color: #065f46; font-size: 13px; line-height: 1.6;"><b>📈 vs. Qwen3.5-9B</b><br>+1.80 points in Math, +0.40 in Physics, +0.60 in Chemistry, and <b>+0.93 average points</b>.</div>
|
| 220 |
+
<div style="border: 1px solid #bae6fd; border-radius: 10px; background: #f0f9ff; padding: 14px; color: #0c4a6e; font-size: 13px; line-height: 1.6;"><b>🧪 Evaluation setup</b><br>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.</div>
|
| 221 |
+
</div>
|
| 222 |
+
|
| 223 |
+
### 2.3 Inference Efficiency
|
| 224 |
+
|
| 225 |
+
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; border: 1px solid #cbd5e1; border-radius: 16px; overflow: hidden; background: #ffffff; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); margin-bottom: 28px;">
|
| 226 |
+
<div style="background: linear-gradient(135deg, #0f766e 0%, #047857 55%, #0369a1 100%); padding: 20px; color: white;">
|
| 227 |
+
<h3 style="margin: 0; font-size: 20px; font-weight: 800; color: white; border: none;">⚡ More Correct Answers per Reasoning Token</h3>
|
| 228 |
+
<p style="margin: 6px 0 0 0; font-size: 13px; color: #ccfbf1; line-height: 1.6;">On the same 1,500-question MMLU-Pro sample, the DeepSeek-distilled model combines the highest accuracy with the lowest token cost per correct answer.</p>
|
| 229 |
+
</div>
|
| 230 |
+
<div style="padding: 20px;">
|
| 231 |
+
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px;">
|
| 232 |
+
<div style="border: 1px solid #a7f3d0; border-radius: 10px; background: #f0fdf4; padding: 15px; color: #065f46; font-size: 13px; line-height: 1.6;">
|
| 233 |
+
<span style="font-size: 11px; font-weight: 800; color: #047857; text-transform: uppercase; letter-spacing: 0.4px;">vs. Qwen3.5-9B</span><br>
|
| 234 |
+
<span style="font-size: 22px; font-weight: 800;">36.1% fewer tokens</span><br>
|
| 235 |
+
per correct answer, with <b>+0.93 accuracy points</b>.
|
| 236 |
+
</div>
|
| 237 |
+
<div style="border: 1px solid #bae6fd; border-radius: 10px; background: #f0f9ff; padding: 15px; color: #0c4a6e; font-size: 13px; line-height: 1.6;">
|
| 238 |
+
<span style="font-size: 11px; font-weight: 800; color: #0369a1; text-transform: uppercase; letter-spacing: 0.4px;">vs. Claude Mythos-distilled 9B</span><br>
|
| 239 |
+
<span style="font-size: 22px; font-weight: 800;">22.7% fewer tokens</span><br>
|
| 240 |
+
per correct answer, with <b>+9.47 accuracy points</b>.
|
| 241 |
+
</div>
|
| 242 |
+
<div style="border: 1px solid #ddd6fe; border-radius: 10px; background: #f5f3ff; padding: 15px; color: #4c1d95; font-size: 13px; line-height: 1.6;">
|
| 243 |
+
<span style="font-size: 11px; font-weight: 800; color: #6d28d9; text-transform: uppercase; letter-spacing: 0.4px;">Correct answers / 1M tokens</span><br>
|
| 244 |
+
<span style="font-size: 22px; font-weight: 800;">316.8</span><br>
|
| 245 |
+
<b>+56.4%</b> vs. Qwen and <b>+29.3%</b> vs. Claude Mythos-distilled 9B.
|
| 246 |
+
</div>
|
| 247 |
+
</div>
|
| 248 |
+
</div>
|
| 249 |
+
</div>
|
| 250 |
+
|
| 251 |
+
<div style="overflow-x: auto; margin-bottom: 20px;">
|
| 252 |
+
<table style="display: table; width: 100%; min-width: 900px; table-layout: auto; border-collapse: collapse; overflow-wrap: anywhere; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 12px; line-height: 1.25; border: 1px solid #cbd5e1;">
|
| 253 |
+
<thead>
|
| 254 |
+
<tr style="background: #ecfdf5;">
|
| 255 |
+
<th style="padding: 10px 12px; border-bottom: 2px solid #10b981; text-align: left; color: #047857;">Model</th>
|
| 256 |
+
<th style="padding: 10px 12px; border-bottom: 2px solid #10b981; text-align: right; color: #047857;">Accuracy</th>
|
| 257 |
+
<th style="padding: 10px 12px; border-bottom: 2px solid #10b981; text-align: right; color: #047857;">Avg. Reasoning<br>Tokens / Question</th>
|
| 258 |
+
<th style="padding: 10px 12px; border-bottom: 2px solid #10b981; text-align: right; color: #047857;">Median</th>
|
| 259 |
+
<th style="padding: 10px 12px; border-bottom: 2px solid #10b981; text-align: right; color: #047857;">Tokens /<br>Correct Answer</th>
|
| 260 |
+
<th style="padding: 10px 12px; border-bottom: 2px solid #10b981; text-align: right; color: #047857;">Correct Answers /<br>1M Tokens</th>
|
| 261 |
+
</tr>
|
| 262 |
+
</thead>
|
| 263 |
+
<tbody>
|
| 264 |
+
<tr style="background: #f0fdf4;">
|
| 265 |
+
<td style="padding: 10px 12px; border-bottom: 1px solid #a7f3d0; color: #065f46;"><b>DeepSeek-V4-Pro-Qwen3.5-9B</b></td>
|
| 266 |
+
<td style="padding: 10px 12px; border-bottom: 1px solid #a7f3d0; text-align: right; color: #065f46;"><b>90.53%</b></td>
|
| 267 |
+
<td style="padding: 10px 12px; border-bottom: 1px solid #a7f3d0; text-align: right; color: #065f46;"><b>2,858</b></td>
|
| 268 |
+
<td style="padding: 10px 12px; border-bottom: 1px solid #a7f3d0; text-align: right;">676</td>
|
| 269 |
+
<td style="padding: 10px 12px; border-bottom: 1px solid #a7f3d0; text-align: right; color: #065f46;"><b>3,157</b></td>
|
| 270 |
+
<td style="padding: 10px 12px; border-bottom: 1px solid #a7f3d0; text-align: right; color: #065f46;"><b>316.8</b></td>
|
| 271 |
+
</tr>
|
| 272 |
+
<tr>
|
| 273 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0;">Qwen3.5-9B</td>
|
| 274 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">89.60%</td>
|
| 275 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">4,425</td>
|
| 276 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">3,214</td>
|
| 277 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">4,938</td>
|
| 278 |
+
<td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right;">202.5</td>
|
| 279 |
+
</tr>
|
| 280 |
+
<tr>
|
| 281 |
+
<td style="padding: 9px 12px;">Claude Mythos-distilled 9B</td>
|
| 282 |
+
<td style="padding: 9px 12px; text-align: right;">81.07%</td>
|
| 283 |
+
<td style="padding: 9px 12px; text-align: right;">3,310</td>
|
| 284 |
+
<td style="padding: 9px 12px; text-align: right;"><b>639</b></td>
|
| 285 |
+
<td style="padding: 9px 12px; text-align: right;">4,083</td>
|
| 286 |
+
<td style="padding: 9px 12px; text-align: right;">244.9</td>
|
| 287 |
+
</tr>
|
| 288 |
+
</tbody>
|
| 289 |
+
</table>
|
| 290 |
+
</div>
|
| 291 |
+
|
| 292 |
+
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; margin-bottom: 28px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;">
|
| 293 |
+
<div style="border: 1px solid #ddd6fe; border-radius: 12px; overflow: hidden; background: #ffffff;">
|
| 294 |
+
<div style="background: #f5f3ff; border-bottom: 1px solid #ddd6fe; padding: 11px 14px; color: #6d28d9; font-size: 13px; font-weight: 800;">🧪 Token Savings by MMLU-Pro Subject</div>
|
| 295 |
+
<div style="overflow-x: auto;">
|
| 296 |
+
<table style="display: table; width: 100%; min-width: 430px; table-layout: auto; border-collapse: collapse; overflow-wrap: anywhere; font-size: 12px; line-height: 1.25; color: #334155;">
|
| 297 |
+
<thead><tr style="background: #fafafa;"><th style="padding: 9px 12px; text-align: left; border-bottom: 1px solid #e2e8f0;">Subject</th><th style="padding: 9px 12px; text-align: right; border-bottom: 1px solid #e2e8f0;">vs. Qwen3.5-9B</th><th style="padding: 9px 12px; text-align: right; border-bottom: 1px solid #e2e8f0;">vs. Claude Mythos-distilled 9B</th></tr></thead>
|
| 298 |
+
<tbody>
|
| 299 |
+
<tr><td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0;">Math</td><td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right; color: #047857;"><b>47.4%</b></td><td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right; color: #047857;"><b>35.6%</b></td></tr>
|
| 300 |
+
<tr><td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0;">Physics</td><td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right; color: #047857;"><b>30.8%</b></td><td style="padding: 9px 12px; border-bottom: 1px solid #e2e8f0; text-align: right; color: #047857;"><b>10.8%</b></td></tr>
|
| 301 |
+
<tr><td style="padding: 9px 12px;">Chemistry</td><td style="padding: 9px 12px; text-align: right; color: #047857;"><b>32.1%</b></td><td style="padding: 9px 12px; text-align: right; color: #047857;"><b>23.3%</b></td></tr>
|
| 302 |
+
</tbody>
|
| 303 |
+
</table>
|
| 304 |
+
</div>
|
| 305 |
+
</div>
|
| 306 |
+
|
| 307 |
+
<div style="border: 1px solid #bae6fd; border-radius: 12px; overflow: hidden; background: #ffffff;">
|
| 308 |
+
<div style="background: #f0f9ff; border-bottom: 1px solid #bae6fd; padding: 11px 14px; color: #0369a1; font-size: 13px; font-weight: 800;">📐 GSM8K NVFP4 Reasoning Profile</div>
|
| 309 |
+
<div style="padding: 14px;">
|
| 310 |
+
<div style="display: grid; grid-template-columns: repeat(2, minmax(110px, 1fr)); gap: 10px;">
|
| 311 |
+
<div style="background: #f8fafc; border-radius: 8px; padding: 10px;"><span style="font-size: 10px; color: #64748b; text-transform: uppercase; font-weight: 700;">Average</span><br><b style="font-size: 18px; color: #0c4a6e;">1,627</b><span style="font-size: 11px; color: #64748b;"> tokens</span></div>
|
| 312 |
+
<div style="background: #f8fafc; border-radius: 8px; padding: 10px;"><span style="font-size: 10px; color: #64748b; text-transform: uppercase; font-weight: 700;">Median</span><br><b style="font-size: 18px; color: #0c4a6e;">372</b><span style="font-size: 11px; color: #64748b;"> tokens</span></div>
|
| 313 |
+
<div style="background: #f8fafc; border-radius: 8px; padding: 10px;"><span style="font-size: 10px; color: #64748b; text-transform: uppercase; font-weight: 700;">P90</span><br><b style="font-size: 18px; color: #0c4a6e;">3,042</b><span style="font-size: 11px; color: #64748b;"> tokens</span></div>
|
| 314 |
+
<div style="background: #f8fafc; border-radius: 8px; padding: 10px;"><span style="font-size: 10px; color: #64748b; text-transform: uppercase; font-weight: 700;">Per Correct Answer</span><br><b style="font-size: 18px; color: #0c4a6e;">1,721</b><span style="font-size: 11px; color: #64748b;"> tokens</span></div>
|
| 315 |
+
</div>
|
| 316 |
+
<p style="margin: 11px 0 0 0; font-size: 11px; color: #64748b; line-height: 1.5;">Computed from <b>2,638</b> available raw NVFP4 trajectories.</p>
|
| 317 |
+
</div>
|
| 318 |
+
</div>
|
| 319 |
+
</div>
|
| 320 |
+
|
| 321 |
+
<div style="background: #f8fafc; border-left: 4px solid #64748b; padding: 11px 14px; border-radius: 0 8px 8px 0; color: #475569; font-size: 12px; line-height: 1.6; margin-bottom: 28px;"><b>Metric notes:</b> MMLU-Pro efficiency uses 1,500 questions per model and the supplied composite score for the final correct-answer total. “Tokens per correct answer” is total reasoning tokens divided by correct answers; “correct answers per 1M tokens” is the inverse throughput measure. Lower is better for token-cost metrics; higher is better for accuracy and correct-answer throughput. Comparison deltas follow the supplied composite-result calculations, so recomputing them only from the rounded display values may produce a 0.01-point difference. GSM8K statistics summarize the currently available NVFP4 raw trajectories and are reported separately from the MMLU-Pro MTP-Q8_0 comparison.</div>
|
| 322 |
+
|
| 323 |
+
## 🛠️ 3. Generalization Beyond the Training Mix
|
| 324 |
+
|
| 325 |
+
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; border: 1px solid #cbd5e1; border-radius: 12px; overflow: hidden; background: #ffffff; margin-bottom: 28px;">
|
| 326 |
+
<div style="background: linear-gradient(135deg, #10b981 0%, #047857 100%); padding: 13px 17px; color: white; font-weight: 700; font-size: 14px;">🔁 A Small but Interesting Transfer Effect</div>
|
| 327 |
+
<div style="padding: 18px; color: #334155; font-size: 13px; line-height: 1.7;">
|
| 328 |
+
Although the SFT mixture intentionally contained <b>no coding data</b>, post-training tests indicated a <b>small improvement in programming and tool-calling behavior</b>. A plausible interpretation is that mathematics and STEM supervision strengthened reusable skills such as decomposition, constraint tracking, verification, and structured action planning.
|
| 329 |
+
<br><br>
|
| 330 |
+
This observation is preliminary. It should not be read as a claim that the model is coding-specialized, and the release does not replace dedicated code benchmarks or agent-environment evaluation.
|
| 331 |
+
</div>
|
| 332 |
+
</div>
|
| 333 |
+
|
| 334 |
+
## 🎯 4. Recommended Uses
|
| 335 |
+
|
| 336 |
+
- Mathematical problem solving and step-by-step derivation
|
| 337 |
+
- Physics, chemistry, and broader STEM question answering
|
| 338 |
+
- Structured reasoning and analytical instruction following
|
| 339 |
+
- Research on reasoning distillation and cross-domain SFT transfer
|
| 340 |
+
- Experimental tool-calling or programming workflows where outputs are independently validated
|
| 341 |
+
|
| 342 |
+
## ⚠️ 5. Limitations
|
| 343 |
+
|
| 344 |
+
- This is an experimental 9B community model and remains subject to hallucinations, reasoning errors, and unstable behavior on difficult or underspecified tasks.
|
| 345 |
+
- 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.
|
| 346 |
+
- GSM8K and MMLU-Pro used different inference builds and backends, so their scores should not be used to infer quantization equivalence.
|
| 347 |
+
- Programming and tool-use gains were observed without direct coding supervision but are described only as small, preliminary generalization gains.
|
| 348 |
+
- Users should independently verify high-stakes mathematical, scientific, or factual outputs.
|
| 349 |
+
|
| 350 |
+
## 📚 6. Resources, Acknowledgements & Citation
|
| 351 |
+
|
| 352 |
+
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; border: 1px solid #cbd5e1; border-radius: 14px; overflow: hidden; background: #ffffff; margin-top: 18px;">
|
| 353 |
+
<div style="background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%); padding: 16px 20px; color: white; font-weight: 800; font-size: 16px;">🌟 Open Research Release</div>
|
| 354 |
+
<div style="padding: 20px; color: #334155; font-size: 13px; line-height: 1.7;">
|
| 355 |
+
<p style="margin-top: 0;"><b>Fine-tuning guide:</b> <a href="https://github.com/R6410418/Jackrong-llm-finetuning-guide" style="color: #7c3aed; font-weight: 700; text-decoration: none;">Jackrong LLM Fine-Tuning Guide</a></p>
|
| 356 |
+
<p><b>Acknowledgements:</b> Kyle Hessling for hardware collaboration, training support, and evaluation assistance; DeepSeek for the teacher model and reasoning data source; Qwen for the base model family; Unsloth for efficient fine-tuning tooling; and the open-source inference community behind vLLM and llama.cpp.</p>
|
| 357 |
+
<p><b>Citation:</b></p>
|
| 358 |
+
<pre style="background: #f5f3ff; color: #4c1d95; border: 1px solid #ddd6fe; padding: 14px; border-radius: 8px; overflow-x: auto; font-size: 12px;"><code>@misc{jackrong_deepseek_v4_pro_qwen35_9b,
|
| 359 |
+
title = {DeepSeek-V4-Pro-Qwen3.5-9B},
|
| 360 |
+
author = {Jackrong},
|
| 361 |
+
year = {2026},
|
| 362 |
+
publisher = {Hugging Face}
|
| 363 |
+
}</code></pre>
|
| 364 |
+
</div>
|
| 365 |
+
</div>
|