Views
No views yet
Q4_0 GGUF quantization of Qwen3.6-35B-A3B (Mixture-of-Experts, ~3B active
parameters per token) that retains the Multi-Token Prediction (MTP) tensors,
so it can self-speculate with llama.cpp's --spec-type draft-mtp — no separate
draft model required.| Architecture | Qwen3.6 MoE (A3B — ~3B active params/token) |
| Quantization | Q4_0 |
| File | Qwen3.6-35B-A3B-Q4_0.gguf (~19 GB, single file) |
| Speculative decoding | MTP (built in) |
draft-mtp speculative type:1git clone https://github.com/ggml-org/llama.cpp
2cd llama.cpp && git checkout mtp-exp # branch with --spec-type draft-mtp
3cmake -B build -DGGML_CUDA=ON && cmake --build build -j1llama-server \
2 -m Qwen3.6-35B-A3B-Q4_0.gguf \
3 --spec-type draft-mtp --spec-draft-n-max 2 \
4 -c 262144 -ngl 991pip install -U "huggingface_hub[hf_transfer]"
2HF_HUB_ENABLE_HF_TRANSFER=1 \
3hf download shujunyi/Qwen3.6-35B-A3B-MTP-Q4_0 \
4 Qwen3.6-35B-A3B-Q4_0.gguf --local-dir .Q4_0 is a simple/legacy quant chosen for a clean quality baseline; for the best
size/quality tradeoff consider an IQ4_XS / imatrix build instead.