NVFP4 (Blackwell native FP4) quantized GGUF of
Jackrong/Qwopus3.6-27B-Coder-MTP for llama.cpp with Multi-Token Prediction (MTP) speculative decoding support.
Following Unsloth's NVFP4 approach for Qwen3.6-27B hybrid Mamba2-Transformer models:
This mapping matches the reference
Qwen3.6-27B-NVFP4-MTP quantization exactly.
1llama-server \
2 --model Qwopus3.6-27B-Coder-MTP-NVFP4.gguf \
3 --mmproj mmproj-F32.gguf \
4 --chat-template-file prompt.jinja \
5 --host 0.0.0.0 --port 8080 \
6 -c 262144 -b 512 -ub 512 \
7 --flash-attn on \
8 --spec-type draft-mtp --spec-draft-n-max 4 \
9 --reasoning-budget 0 \
10 --jinja
1# Create tensor-type-file
2cat > nvfp4-tensor-types.txt << 'TYPES'
3attn_q=nvfp4 attn_k=nvfp4 attn_v=nvfp4 attn_qkv=nvfp4 attn_output=nvfp4 ffn_down=nvfp4 ffn_gate=nvfp4 ffn_up=nvfp4
4TYPES
5
6# Convert Q8_0 → NVFP4
7llama-quantize \
8 --allow-requantize \
9 --tensor-type-file nvfp4-tensor-types.txt \
10 Qwopus3.6-27B-Coder-MTP-Q8_0.gguf \
11 Qwopus3.6-27B-Coder-MTP-NVFP4.gguf \
12 Q4_K
Qwopus3.6-27B-Coder is a LoRA/SFT fine-tune of Qwopus3.6-27B-v2 (itself built on Qwen3.6-27B), specialized for agentic coding with tool calling, debugging, and repository-level tasks. It retains the hybrid Mamba2-Transformer architecture with SSM layers interleaved with full attention layers every 4 blocks, plus an MTP head at the final layer.
Apache-2.0 — same as the original model.