Views
No views yet
max_tokens budget on the thinking chain and returning content: null. Our production A/B (same NVFP4 precision, same TP2 setup):| Task | Official Qwen3.6-27B-NVFP4 | This model |
|---|---|---|
| Chinese copywriting | 1671 tok / 15.2s | 688 tok / 6.4s |
| Coding task | ❌ burned 2048-tok budget, empty answer | ✅ complete, 722 tok |
| Math word problem | ✅ correct, 1624 tok | ✅ correct, 352 tok |
| Image understanding | ❌ burned budget, no answer | ✅ correct, 138 tok |
| Long-doc summary | 656 tok | 241 tok |
| Decode speed (2×RTX 5090, TP2) | 108.7 tok/s | 109.3 tok/s (parity) |
1vllm serve <this-repo> \
2 --tensor-parallel-size 2 \
3 --kv-cache-dtype fp8 \
4 --max-model-len 262144 \
5 --enable-auto-tool-choice \
6 --tool-call-parser hermes \
7 --reasoning-parser qwen3 \
8 --trust-remote-code--max-model-len, add --enforce-eager if CUDA-graph capture OOMs).--tool-call-parser hermes — the distilled model emits <tool_call>{...}</tool_call> (hermes format). With qwen3_coder parser tool calls silently degrade to plain text.tokenizer.json / tokenizer_config.json from the official base (defines the vision special tokens — with the upstream distill tokenizer, video inputs crash Qwen3VLProcessor);chat_template.jinja from the distill (drives the hermes tool format — with the official template the model stops emitting tool calls).QuantizationModifier, scheme="NVFP4", ignore=["lm_head"]), sequential layer-wise calibration on a single GPU with the model resident in CPU RAM. NVIDIA ModelOpt was tried first and failed on this hybrid GDN architecture (both latest and pinned versions), llm-compressor handled it cleanly and auto-excluded the quantization-sensitive linear_attn (GDN) layers — same treatment as NVIDIA's official NVFP4 build.config.json (visual modules listed explicitly in the quantization ignore — regex patterns break vLLM weight loading with a KeyError), and restored the processor config set.Qwen/Qwen3.6-27B (Apache-2.0) → rico03/Qwen3.6-27B-Claude-Opus-Reasoning-Distilled (Apache-2.0, 14k Claude Opus 4.6 reasoning traces — see upstream repo for training-data details) → this NVFP4 quantization (Apache-2.0). Vision tower and tokenizer inherit from the official base checkpoint.