Views
No views yet
Qwen/Qwen3.8-27B, both calibrated with an
importance matrix captured from the drafter's own activations during live speculative decoding.| File | Size | Acceptance | Use when |
|---|---|---|---|
Qwen3.8-27B-DFlash2-Q3_K_M.gguf | 916,703,008 | 65.55% | you have the memory — matches the 1.14 GB Q4_K_M |
Qwen3.8-27B-DFlash2-Q2_K.gguf | 705,431,328 | 64.08% | memory is tight — 211 MB less for 1.5 points |
llama-imatrix cannot run one at all, because the architecture
has no output layer and no token embedding and borrows both from its target, so it cannot form a
context alone (dflash requires ctx_other to be set). The collector has to be attached to the
draft context inside a running speculative session instead.n_max + 1 tokens, so every
draft-decode matmul is rejected — and it only collects tensors named blk.*, which excludes
DFlash 2's own top-level fc.weight and selector_hidden.weight. Attaching the stock collector
captures 10 of 49 tensors. Relaxing both filters captures 49 of 49.dflash-imatrix.patch so the calibration is reproducible.1deefcca, a quantized Qwen3.8-27B target, --spec-draft-n-max 4,
16k context, 20 fixed prompts, temperature 0, seed 42, 256-token cap, one slot.| Drafter | Bytes | Micro acceptance |
|---|---|---|
| Q4_K_M (upstream, uncalibrated) | 1,143,006,752 | 65.56% |
| Q3_K_M (this repo, calibrated) | 916,703,008 | 65.55% |
| Q3_K_M (uncalibrated control) | 916,702,752 | 65.20% |
| Q2_K (this repo, calibrated) | 705,431,328 | 64.08% |
| Q2_K (uncalibrated control) | 705,431,072 | 61.11% |
HermiHg/Qwen3.8-27B-DFlash2-Q2_K_S-MIX-GGUF
is a mixed 2–3-bit build at 561 MB — another 144 MB below the Q2_K here. Measured under the same
protocol on the same target it reaches 62.50%, so it trades 1.58 points of acceptance for
that space. If you are tight enough on memory that 144 MB matters, it is the better choice, and
it comfortably beats an uncalibrated Q2_K at any size.Qwen3.8-27B-DFlash2-BF16.gguf (3,860,293,152 bytes) as published in
z-lab/Qwen3.8-27B-DFlash2-GGUF,
itself a conversion of
incoai/Qwen3.8-27B-DFlash2.1deefcca395743049c3820ab8f9b15043f3e9446 plus dflash-imatrix.patch.
The imatrix was captured from a live speculative session against a quantized Qwen3.8-27B target,
with both collector filters relaxed so draft-decode batches and DFlash 2's top-level weights are
included.18a380efc9b7ed8d88677fc895f5c11ae170653434ee378f7348f715c14d0594z-lab's Qwen3.8-27B-DFlash2-Q4_K_M.gguf exactly. These builds therefore come from a
pipeline demonstrably able to reproduce the upstream artifacts.llama-server -m <your-Qwen3.8-27B-target>.gguf \
--spec-type draft-dflash \
-md Qwen3.8-27B-DFlash2-Q3_K_M.gguf \
--spec-draft-n-max 4 \
--spec-draft-ngl 99n=4 and n=5 measured as statistically indistinguishable; n=6 costs acceptance and gains
nothing for it.