High-quality imatrix GGUF quantizations of tencent/Hy3, Tencent's 295B-parameter Mixture-of-Experts model with ~21B active parameters per token.
Produced with a Hy3-enabled llama.cpp branch (build 9909, commit 56142c5f8). Every quant in this repo was measured for quality (KL divergence, perplexity, and top-token agreement against BF16 reference logits) and throughput (llama-bench on 8× RTX PRO 6000 Blackwell) — full raw data is included under benchmarks/.
The GGUFs are converted from the BF16 base model with the MTP/NextN block excluded (--no-mtp) — intentional for normal serving. Q8_0 was intentionally skipped for this release.
Which File Should I Download?
Sizes below are weights only — leave headroom for KV cache and compute buffers.
Use case
File
Size
Why
Highest quality
Hy3-Q6_K-imatrix.gguf
226.24 GiB
Effectively lossless in this set: mean KLD 0.0207, 95.1% top-token agreement, PPL ratio ≈ 1.0. Needs ~3× 96 GB GPUs or 256 GB+ unified memory.
Recommended default
Hy3-Q4_K_M-imatrix.gguf
167.08 GiB
Best quality/size/speed balance. Mean KLD 0.0904, 90.0% top-token agreement. Fits on 2× 96 GB GPUs.
Smaller fallback
Hy3-Q3_K_L-imatrix.gguf
143.06 GiB
Use when Q4 doesn't fit; quality loss is materially higher than Q4 (mean KLD 0.162).
Minimum size
Hy3-IQ2_M-imatrix.gguf
90.32 GiB
Smallest artifact — fits a single 96 GB GPU (tight) or 128 GB unified memory. Use only when size is the hard constraint (mean KLD 0.531).
Download
bash
1# Single quant (example: Q4_K_M)2hf download LordNeel/Hy3-GGUF Hy3-Q4_K_M-imatrix.gguf --local-dir ./Hy3-GGUF
Run with llama.cpp
Use --split-mode layer for multi-GPU. (--split-mode tensor crashed in CUDA decode during testing on this Hy3 GGUF path — see Known Limitations.)
The BF16 reference logits file was kept local as a large intermediate and is not uploaded.
Artifact
Size GiB
BPW
PPL(Q)
PPL ratio
Mean KLD
Median KLD
RMS Δp
Same top-p
Hy3-Q6_K-imatrix.gguf
226.24
6.59
4.7705 ± 0.0673
0.9979 ± 0.0016
0.0207 ± 0.0004
0.0038
5.19 ± 0.09%
95.12 ± 0.12%
Hy3-Q4_K_M-imatrix.gguf
167.08
4.86
5.0395 ± 0.0728
1.0541 ± 0.0036
0.0904 ± 0.0014
0.0168
10.56 ± 0.13%
90.00 ± 0.17%
Hy3-Q3_K_L-imatrix.gguf
143.06
4.16
5.3576 ± 0.0797
1.1207 ± 0.0052
0.1624 ± 0.0023
0.0316
13.68 ± 0.15%
86.83 ± 0.19%
Hy3-IQ2_M-imatrix.gguf
90.32
2.63
6.6560 ± 0.0993
1.3923 ± 0.0116
0.5314 ± 0.0059
0.1567
24.79 ± 0.19%
74.75 ± 0.24%
Lower KLD, PPL ratio, and RMS Δp are better; higher same top-p is better. "Same top-p" is the percentage of positions where the quant and the BF16 reference agree on the highest-probability token.
KLD/PPL numbers come from a bounded WikiText-2 slice (128 × 512 ctx), not a full downstream task harness. MMLU/GPQA/coding evals were not run for these GGUFs; see the upstream task scores on Tencent's base model card instead.
The GGUFs exclude the MTP/NextN block — intentional for normal serving.
--split-mode tensor was unstable (CUDA decode crash) on the tested stack for this Hy3 GGUF path. Use --split-mode layer.
A GPTQ4/SGLang variant was tested separately and classified invalid (generation collapsed into repeated punctuation); those artifacts are not published here.
Q8_0 was intentionally skipped for this release.
Benchmark Hardware
8× NVIDIA RTX PRO 6000 Blackwell Server Edition (~97 GB VRAM each)