A 4-bit model beat its BF16 checkpoint. Quantization was not the only change
"A 4-bit model beat full precision" is the kind of result that races through an engineering chat before anyone opens the methods section. The new Quantization-Aware Healing paper does report a striking result: a structurally compressed 60B model stored in MXFP4 matched or beat its recovered 60B BF16 checkpoint on seven of nine benchmarks.
Quantization was not the only intervention. The 4-bit model received another round of distillation from the original, uncompressed 120B teacher. The BF16 checkpoint did not receive that same second pass. The useful conclusion concerns teacher choice and recovery pipelines, not low precision creating intelligence for free.
Three checkpoints, not two
The Quantization-Aware Healing preprint, submitted on August 21, 2026, starts with GPT-OSS 120B. The authors structurally compress it to 60B parameters, recover that smaller architecture in BF16, and then quantize the result to MXFP4.
That sequence creates three checkpoints that are easy to blur together:
- The original 120B teacher.
- A structurally compressed and recovered 60B BF16 checkpoint.
- A 60B MXFP4 checkpoint trained with Quantization-Aware Healing, or QAH.
The seven-of-nine claim compares checkpoint three with checkpoint two. It does not mean the 4-bit 60B model generally beat the original 120B teacher. In the paper's table, the QAH model exceeds the 120B model on LiveCodeBench by 0.5 points, 66.5 versus 66.0. It remains below the teacher on the other eight listed benchmarks.
That is a strong recovery result with a specific comparison boundary.
The teacher changed the ceiling
Quantization-aware training, or QAT, simulates low-precision weights during training and optimizes against hard labels. Quantization-aware distillation instead learns from the probability distribution produced by a frozen full-precision teacher.
For a model that has only been quantized, the teacher can be the same architecture in full precision. Structural compression changes the situation. Once layers, heads, or neurons have been removed, no independently trained 60B full-precision counterpart exists. The recovered 60B BF16 checkpoint is already an approximation of the original 120B model.
QAH bypasses that intermediate ceiling. It trains the quantized 60B student directly against logits from the original 120B teacher. The team's technical write-up describes quantization as a second distillation opportunity. That is more accurate than saying the reduction to four bits improved the model.
The distinction changes the required ablation. A clean deployment experiment should compare at least:
- the recovered BF16 checkpoint before the second pass;
- the same architecture with QAT under a matched data and compute budget;
- the quantized architecture distilled from the recovered checkpoint;
- the quantized architecture distilled from the original teacher.
Without those controls, precision, teacher quality, extra supervision, training length, and data can all move together.
What the reported gains cover
Against the 60B BF16 checkpoint, the QAH model gained 7.4 points on AA-LCR, 5.6 on AIME 2025, 2.7 on Aider, 2.3 on tau2-bench, 1.7 on GPQA Diamond, 1.5 on IFBench, and 1.0 on LiveCodeBench. It lost 0.2 on MMLU-Pro and 1.4 on SciCode.
The method did not lift every capability. A nine-benchmark table also cannot establish production quality for a particular application. This is a first-version preprint from the team that developed the method, and the result has not been independently replicated in the sources reviewed for this article.
The released HyperNova-60B model card exposes more evaluation and serving details. Its separate inference test reports 5,210 output tokens per second for HyperNova 60B versus 3,821 for GPT-OSS 120B, with median time to first token of 4.85 seconds versus 7.04. The listed model weights are 32 GB versus 65 GB.
Those figures came from one NVIDIA H200, concurrency 128, a 1,000-token input and 1,000-token output workload, three-minute phases, vLLM 0.18.0, and deterministic decoding. They are vendor measurements for a specific setup, not a portable promise for every runtime or traffic shape.
Stability may matter more than the peak
The matched QAH-versus-QAT experiment used a 9B model and averaged MMLU-Pro, LiveCodeBench, and GPQA Diamond. QAH reached 54.9 after about 100 steps. QAT reached a similar peak of 54.6 after roughly 700 steps, then lost nearly 19 points by step 1,200.
The peak scores are effectively tied. Their operational paths differ. A training run that collapses after its best checkpoint needs a reliable held-out signal and careful early stopping. A method that reaches a similar level sooner and remains near it is easier to operate.
This result is confined to the authors' matched experiment, but it supports a better reporting template. Publish the learning curve, the checkpoint-selection rule, and the score after continued training. A single best checkpoint hides how fragile the recipe may be.
Treat the training backend as part of the experiment
One of the less flashy findings may be the most useful. The appendix reports an eleven-run QAT sweep. Only the FSDP2 configuration reached the released 120B MXFP4 baseline on GPQA Diamond. Every DeepSpeed configuration plateaued 3.5 to 14.2 points lower across a four-order-of-magnitude learning-rate range.
The authors held the starting checkpoint, corpus, gradient clipping, and warmup constant while varying the backend and other system settings. That does not prove one framework is always better. It shows that a distributed training backend can change the resulting model, not merely the speed of the run.
Record the backend version, sharding policy, effective sequence length, reduction behavior, mixed-precision settings, frozen modules, batch construction, and checkpoint conversion. Reproducing only the optimizer and learning rate may not reproduce the model.
A deployment check before accepting the headline
Teams considering a compressed checkpoint can use this evaluation plan:
- Identify every checkpoint in the lineage, including which model supplied each distillation target.
- Separate structural compression, quantization, extra data, and extra training in the comparison.
- Re-run application tasks against the original teacher, recovered BF16 model, and final low-precision model.
- Measure the full quality curve rather than keeping only the best step.
- Benchmark throughput, time to first token, memory, and concurrency on the hardware and runtime you will operate.
- Test safety, tool calls, output schemas, and languages that the public benchmark does not cover well.
If several providers expose comparable models, the same task set can run through an endpoint such as api.ish.chat. Our GPT-5.6 migration guide explains why model selection should follow workload tests rather than a single aggregate score.
QAH is interesting because it recovers a heavily compressed model quickly and, in the reported experiment, stably. Four-bit storage did not simply beat full precision. A smaller quantized student was given a stronger teacher and another chance to learn.



