Qwen3.5-9B — BitClass3 Mixed-Precision GGUF
Mixed-precision GGUF quantizations of
Qwen3.5-9B.
BitClass3 keeps the Hessian-sensitivity front-end to set each level's bit budget, but
hands the per-tensor allocation to an
error-minimizing solver (built on llama.cpp's
--target-bpw) that distributes bits across
every tensor — including the hybrid
DeltaNet/SSM tensors — to minimize imatrix-weighted quantization error at the target size.
Available Quantizations
PPL is the in-house eval (continuity with prior releases); KLD vs the BF16 source is the
primary quality metric (mean and the robust 99.9th percentile).
Recommended: Q4_K_M — KL-mean 0.035 at 5.41 GB; PPL is within rounding of Q8_0.
How It Compares
| Model | BPW | Size | PPL ↓ | Source |
|---|
| ByteShape IQ3_S 3.00bpw | 3.0 | 3.37 GB | 2.069 | byteshape |
| ★ Ours Q3_K_S | 3.6 | 4.07 GB | 1.78 | This repo |
| ★ Ours Q4_K_M | 4.8 | 5.41 GB | 1.74 | This repo |
| ★ Ours Q5_K_M | 5.4 | 6.00 GB | 1.73 | This repo |
Our Q3_K_S beats ByteShape's 3.00bpw 9B on perplexity (1.78 vs 2.069). ByteShape's higher-BPW rows reach lower PPL. The PPL curve is
near-flat from Q8_0 down to Q4_K_M (within rounding), and KL-mean stays at/under 0.035
through Q4_K_M — the error-minimizing allocation spending bits where they reduce divergence
most, rather than by a fixed per-suffix rule.
Key Sensitivity Findings (Qwen3.5-9B)
The Hessian sensitivity pattern for 9B is fundamentally different from 4B:
- blk.3 (early layer) is most sensitive — score 1.0 for k/v. On 4B it was blk.34 (late layer).
- Sensitivity peaks at both ends AND middle: blk.3 (1.0), blk.7 (0.78), blk.23 (0.78), blk.27 (0.86), blk.31 (0.87)
- ffn_down at blk.4-5 is near-zero sensitivity (0.0003) — safe for aggressive quantization
- This confirms: model-specific Hessian data matters. You cannot assume late layers are always most sensitive.
How It Works
- Hessian sensitivity — compute H_diag = mean(X²) per layer on calibration data; this
sets each level's overall bit budget.
- Error-minimizing per-tensor allocation — an imatrix-weighted solver (llama.cpp
--target-bpw) assigns a quant type to every tensor to minimize total quantization
error at the target BPW, covering attention, FFN, and the hybrid DeltaNet/SSM tensors.
- imatrix — importance matrix computed over wikitext guides the per-tensor error.
- GGUF export — produced with stock
llama-quantize.
Usage
1hf download sh111111111111111/Qwen3.5-9B-BitClass3-GGUF \
2 Qwen3.5-9B-Q4_K_M.gguf --local-dir .
3
4llama-cli -m Qwen3.5-9B-Q4_K_M.gguf -cnv
5llama-server -m Qwen3.5-9B-Q4_K_M.gguf --port 8080
Note: Qwen3.5 GGUFs are not currently runnable in Ollama (vision/mmproj handling is not
yet supported there); use llama.cpp or LM Studio.
Benchmark Details
NVIDIA GB10 ATOM (128 GB unified memory, aarch64). llama.cpp with --target-bpw
(PR #15550). PPL via llama-perplexity (in-house eval). KLD via llama-perplexity --kl-divergence against BF16-source logits (mean / median / 99.9th percentile reported;
the single-token KL-max is omitted as an unstable order statistic). wikitext-2 PPL also
tracked internally.
Disclaimer
Independent project. Not affiliated with or endorsed by Qwen, Unsloth, ByteShape, Bartowski, or llama.cpp. Competitor figures are from our own benchmark harness and may differ from those projects' self-reported numbers; competitor file sizes reflect the revision we tested and may since have changed.
License
Apache 2.0, inherited from
Qwen3.5-9B.