Views
No views yet
Capicua25x/Qwen3.6-35B-A3B-DSV4Pro-Thinking-Distill-MXFP4:
the same MXFP4 quant of nerkyor's DeepSeek-V4-Pro thinking distill, with the Qwen3.6 base
vision tower grafted back in — so it's text + reasoning + vision + MTP, all on the
RDNA4 tcclaviger/vllm-rocm-mxfp4-nvfp4 container.Qwen3_5MoeForCausalLM (text-only) — no vision tower. But the base
Qwen/Qwen3.6-35B-A3B is multimodal, and its vision tower is architecturally independent of
the language model: the vision encoder → merger projects image features to out_hidden_size: 2048,
which is exactly the LM's hidden_size. So the tower bolts straight on — the same trick used to
graft MTP back:model.visual.* tensors (BF16, ~0.9 GB) from a known-good multimodal
build into a new shard.model.visual.* to quantization_config.ignore so vLLM loads them as BF16 (the vision
tower is never quantized), and keep the multimodal Qwen3_5MoeConfig (with vision_config).--language-model-only (that flag had been stubbing the tower out), with the
base's chat_template + preprocessor_config for image-token handling.1vllm serve Capicua25x/Qwen3.6-35B-A3B-DSV4Pro-Thinking-Distill-MXFP4-Vision \
2 --tensor-parallel-size 2 --gpu-memory-utilization 0.92 --max-model-len 262144 \
3 --enable-prefix-caching --max-num-seqs 64 \
4 --enable-auto-tool-choice --tool-call-parser qwen3_xml --reasoning-parser qwen3 \
5 --speculative-config '{"method":"mtp","num_speculative_tokens":3}'--language-model-only here (that disables vision). Send images via the standard
OpenAI image_url content blocks. Thinking-on: temperature=0.6 / top_p=0.95.| Gate | This (vision) build | Text-only sibling |
|---|---|---|
| SQL regression | 136/137, 0 FAIL | 136/137, 0 FAIL |
| Agent eval (tool-calling, thinking-on) | 27/27, 0 FAIL | 26/27 |
| Single-stream / ceiling (short) | 108.9 tok/s / ~128 | 107 / ~128 |
| MTP draft acceptance (MTP-3) | ~57% | ~56% |
| Image understanding | ✅ | ❌ (none) |
| Cost of vision | +0.9 GB VRAM, 0 text-perf | — |
uint8 packing — this model
is genuinely 4-bit (config.json → num_bits: 4, mxfp4-pack-quantized).tcclaviger/vllm-rocm-mxfp4-nvfp4.pahajokiconsulting/Qwen3.6-35B-A3B-MXFP4), the source of the BF16 vision-tower weights grafted here.