Views
No views yet
🆕 MTP (Multi-Token Prediction) Support — All models now include the MTP / NextN head (blk.64.*tensors), enabling speculative decoding in compatible runtimes such as recent builds of llama.cpp. Each GGUF has been validated to contain the full set of 15 MTP tensors.
🆕 Improved Quantization — All quantizations now use AutoRound iterative calibration with significantly more iterations than before, resulting in better quality across all schemes. Q2_K_S shows 41.5% lower perplexity compared to the previous version.
| Method | Perplexity (↓) | 95% CI | vs each other |
|---|---|---|---|
| Old | 7.9052 | ± 0.061 | baseline |
| New | 4.6213 | ± 0.034 | 41.5% better |
auto-round tool with MTP layers explicitly enabled. For multimodal use, projector files (mmproj) are provided in F16, BF16, and F32 formats.| File Name | Quant Type | Size | Description |
|---|---|---|---|
Qwen3.6-27B-Q2_K_S.gguf | Q2_K_S | ~10 GB | Extremely high compression, significant quality loss. |
Qwen3.6-27B-Q2_K_MIXED.gguf | Q2_K_MIXED | ~11 GB | Recommended high-compression option. Fast inference. |
Qwen3.6-27B-Q3_K_S.gguf | Q3_K_S | ~11 GB | Very high compression, notable quality loss. |
Qwen3.6-27B-Q3_K_M.gguf | Q3_K_M | ~12 GB | Balanced 3-bit quantization. |
Qwen3.6-27B-Q3_K_L.gguf | Q3_K_L | ~14 GB | High quality 3-bit quantization. |
Qwen3.6-27B-Q4_0.gguf | Q4_0 | ~15 GB | Standard 4-bit quantization, good balance. |
Qwen3.6-27B-Q4_1.gguf | Q4_1 | ~16 GB | Higher quality 4-bit quantization than Q4_0. |
Qwen3.6-27B-Q4_K_S.gguf | Q4_K_S | ~15 GB | Small 4-bit K-quant, good efficiency. |
Qwen3.6-27B-Q4_K_M.gguf | Q4_K_M | ~16 GB | Recommended 4-bit K-quant, excellent balance. |
Qwen3.6-27B-Q5_0.gguf | Q5_0 | ~18 GB | Standard 5-bit quantization, very high quality. |
Qwen3.6-27B-Q5_1.gguf | Q5_1 | ~19 GB | Higher quality 5-bit quantization than Q5_0. |
Qwen3.6-27B-Q5_K_S.gguf | Q5_K_S | ~18 GB | Small 5-bit K-quant, very high quality. |
Qwen3.6-27B-Q5_K_M.gguf | Q5_K_M | ~18 GB | Recommended 5-bit K-quant, near-lossless. |
Qwen3.6-27B-Q6_K.gguf | Q6_K | ~21 GB | 6-bit K-quant, virtually indistinguishable from F16. |
Qwen3.6-27B-Q8_0.gguf | Q8_0 | ~27 GB | 8-bit quantization, near-lossless. |
mmproj-model-f16.gguf | F16 | 928 MB | Unified Projector in Float16 format. |
mmproj-model-bf16.gguf | BF16 | 931 MB | Unified Projector in BFloat16 format. |
mmproj-model-f32.gguf | F32 | 1.8 GB | Unified Projector in Float32 format. |
Note: File sizes are slightly larger than non-MTP quants due to the additional MTP head weights.
1auto-round \
2 --model Qwen/Qwen3.6-27B \
3 --output_dir ./quantized/ \
4 --scheme <SCHEME> \
5 --enable_alg_ext \
6 --enable_torch_compile \
7 --options '{"mtp_num_hidden_layers": 1, "num_nextn_predict_layers": 1}'./llama-cli -m Qwen3.6-27B-Q4_K_M.gguf --mmproj mmproj-model-f16.gguf --image your_image.jpg -p "Describe this image."--enable_alg_ext) runs gradient-based optimization for 200 iterations per block, finding optimal rounding thresholds that minimize reconstruction error.