utautako/Qwen3.6-27B-NVIDIA-NVFP4-MTP-GGUF
Qwen3.6-27B-NVIDIA-NVFP4-MTP-GGUF
GGUF conversion of nvidia/Qwen3.6-27B-NVFP4, preserving NVIDIA NVFP4 tensors, with MTP speculative decoding and a BF16 vision projector. Benchmarked on an RTX 5090 with llama-benchy.
Highlights
- NVFP4 preserved: 193 NVFP4 tensors are preserved from NVIDIA's ModelOpt quantized checkpoint.
- Q4 attention: attention (
q/k/v/o) and the linear-attention / DeltaNet projections are quantized toQ4_K(down from the original FP8) to keep this build compact. For those layers kept atQ8_0for better accuracy — about +3 GB — see the Q8attn variant. - MTP included: the GGUF keeps the extra MTP layer for
draft-mtpspeculative decoding. - Vision supported: includes a BF16
mmprojfile for image input. - RTX 5090 tested: measured with
llama-benchyusing MTP depthd=3.
Provenance
Files
llama.cpp example
llama-server \
-m Qwen3.6-27B-NVIDIA-NVFP4-MTP.gguf \
--mmproj mmproj-Qwen3.6-27B-NVIDIA-NVFP4-BF16.gguf \
--spec-type draft-mtp \
--spec-draft-n-max 3 \
-ngl 999For text-only use, omit --mmproj mmproj-Qwen3.6-27B-NVIDIA-NVFP4-BF16.gguf.
Benchmarks
Measured on RTX 5090, llama-benchy 0.3.8, MTP depth d=3, 3 runs, generation-latency mode.
For reference, the no-speculative baseline measured in the same project notes was about 70.75 tok/s on pp512/tg512, so MTP d=3 gives roughly +59% generation throughput in that test.
Model details
Tensor composition of the main GGUF
The conversion keeps the original NVFP4 tensors instead of requantizing all weights to K-quants. Attention (q/k/v/o) and the linear-attention / DeltaNet projections are quantized to Q4_K (the original checkpoint stored them as FP8), which keeps this build compact; the remaining non-NVFP4 tensors are stored as K-quants or F32 as appropriate. If you want those attention / DeltaNet layers at Q8_0 for better accuracy — about +3 GB — use the Qwen3.6-27B-NVIDIA-NVFP4-MTP-Q8attn-GGUF variant instead.
License and attribution
The upstream models are licensed under Apache-2.0:
This repository redistributes a GGUF format conversion of the NVIDIA NVFP4 checkpoint under the same Apache-2.0 license. Please also follow the terms and usage guidance of the upstream model cards.
Acknowledgements
Thanks to the Qwen team for the base model, NVIDIA for the NVFP4 ModelOpt checkpoint, and the llama.cpp project for GGUF, NVFP4, MTP, and multimodal runtime support.
