Quantization-Aware Healing: a compressed, 4-bit model that outperforms its full-precision original
By Jakub Antkiewicz
•2026-08-26T08:41:25Z
Researchers Turn Model Compression Into an Accuracy Gain
Researchers at Multiverse Computing have introduced a technique that allows a heavily compressed, 4-bit large language model to outperform its full-precision original, inverting the standard industry trade-off between model size and accuracy. Their paper on Quantization-Aware Healing (QAH) details how a GPT-OSS model, first structurally compressed from 120B to 60B parameters and then quantized to 4-bit precision, beat its 16-bit floating point (bfloat16) version on 7 out of 9 key benchmarks. This matters because it reframes quantization not as a final, lossy step, but as a valuable opportunity to improve the model.
How Quantization-Aware Healing Works
Standard model recovery methods fall short after both structural compression and quantization. Quantization-Aware Training (QAT) can be unstable, while Quantization-Aware Distillation (QAD) is typically anchored to the performance of an already-degraded, structurally compressed checkpoint. QAH overcomes this by distilling knowledge directly from the original, pre-compression 120B model into the final 60B, 4-bit model. The teacher and student models do not share an architecture, but the process works because the teacher's output distribution is architecture-agnostic. This second pass of distillation allows the 4-bit student to learn information that even its bfloat16 counterpart never received.
- The 60B MXFP4 (QAH) model beat its 60B BF16 source on 7 of 9 benchmarks.
- The largest gains appeared in categories most susceptible to compression damage: long-context reasoning (+7.4 on AA-LCR) and mathematical problem-solving (+5.6 on AIME 2025).
- The 4-bit model even surpassed the original 120B teacher on the LiveCodeBench coding benchmark.
Rethinking the Efficiency Trade-Off
The results suggest that deploying compressed models no longer has to mean accepting lower performance. The QAH-treated model uses roughly four times less memory for its weights and halves the computation per token compared to its 16-bit version, enabling it to run on significantly smaller hardware. When compared to QAT in a head-to-head test, QAH reached its peak accuracy approximately 7 times faster and remained stable, whereas the QAT model's performance collapsed sharply after its peak. This stability and efficiency transforms quantization from a necessary cost for deployment into a final, value-adding stage of training.
By reframing quantization as a second distillation pass against the original teacher model, Multiverse Computing's QAH proves that model compression pipelines can deliver a final asset that is not only smaller and cheaper to run, but measurably more capable than its unquantized, recovered counterpart.