Multiverse Computing published a technique on August 25, 2026 that inverts one of the most reliable tradeoffs in model deployment: a large language model compressed to half its parameters and quantized to 4 bits that scores higher than the full-precision checkpoint it was built from. The method, called Quantization-Aware Healing (QAH), is detailed in a company blog post and a companion paper, and was applied to OpenAI’s GPT-OSS 120B compressed down to 60B parameters and quantized to MXFP4. The resulting 4-bit model beats its own bfloat16 source on 7 of 9 benchmarks, including gains of 7.4 points on long-context reasoning and 5.6 points on competition math.
The result is not a leaderboard entry for a new frontier model. It is a claim about the recovery step in compression pipelines, the stage where a model that has been shrunk and quantized gets retrained to claw back the capability those steps destroyed. Multiverse’s argument, laid out in the paper Quantization-Aware Healing: A Practical Recipe for Recovering Compressed, 4-Bit LLMs, is that the field’s standard recovery methods anchor the quantized model to the wrong teacher, and that fixing that single choice removes a ceiling on how good a compressed model can be.
The Teacher Was the Bottleneck
The standard efficient-deployment recipe has three stages: structurally compress the architecture by removing layers, heads, or neurons; quantize the surviving weights to 4 bits; then heal the damage with further training. The dominant healing method, quantization-aware training, continues fine-tuning the model on task data through a simulated low-precision forward pass. An alternative, quantization-aware distillation, trains the quantized student to match a frozen full-precision teacher’s output distribution instead.
Both work when quantization is the only change, because a genuine full-precision copy of the same model exists to teach from. Structural compression breaks that assumption. A 60B model cut down from 120B was never independently trained at full precision; the only bfloat16 candidate is a checkpoint that was itself recovered by distillation from the original. Distilling the 4-bit student from that checkpoint, Multiverse argues, caps its accuracy at the recovered checkpoint’s own ceiling.
QAH removes the ceiling by skipping the intermediate teacher entirely. The 4-bit student distills directly from the original, pre-compression 120B model, matching its output distribution through a KL-divergence loss on the logits. Teacher and student share neither size nor precision, which the authors note does not matter: a teacher’s output distribution transfers regardless of the student’s architecture. Under this framing, quantization stops being a lossy postprocessing step and becomes a second full pass of distillation against the strongest available teacher, supervision the bfloat16 checkpoint itself never received.
What the Benchmarks Show
The headline comparison pits the QAH-treated 60B MXFP4 model against the best full-precision version of the same architecture, the recovered 60B bfloat16 checkpoint. The 4-bit model wins 7 of 9 benchmarks:
- AA-LCR (long-context reasoning): 42.7 vs. 35.3, a 7.4-point gain
- AIME 2025 (math): 76.3 vs. 70.7, a 5.6-point gain
- Aider (agentic coding): 40.9 vs. 38.2
- τ²-bench (tool use): 61.7 vs. 59.4
- GPQA Diamond (science): 67.4 vs. 65.7
- IFBench (instruction following): 59.9 vs. 58.4
- LiveCodeBench (coding): 66.5 vs. 65.5
The two losses, MMLU-Pro (73.8 vs. 74.0) and SciCode (34.2 vs. 35.6), come in under a point and a half. The largest gains land exactly where compression usually does the most damage: long-context reasoning and math.
Against the original 120B teacher, the 4-bit student, running at half the teacher’s parameter count and roughly a quarter of its weight memory, edges it on LiveCodeBench (66.5 vs. 66.0) and comes within 1.6 points on GPQA Diamond. The widest remaining gap is AA-LCR, where the teacher scores 50.0 against the student’s 42.7, the capability the paper describes as intrinsically hardest to recover after capacity is cut.
Faster to Train, and It Does Not Collapse
A second experiment isolates the loss function. Quantizing a GPT-OSS 9B model to MXFP4 under matched conditions, QAH and QAT reach effectively tied peak scores, 54.9 against 54.6, averaged across MMLU-Pro, LiveCodeBench, and GPQA Diamond. The paths diverge from there. QAH peaks in roughly 100 training steps, about 7 times faster than QAT’s 700, and holds within two points of that peak through step 1,200. QAT collapses past its peak, shedding nearly 19 points by the same mark.
The practical consequence is a deployment-risk difference the authors spell out: a QAT checkpoint needs careful early stopping against a held-out signal, or a team ships a model that has already started to degrade. A QAH checkpoint, tied to a frozen teacher distribution, has no gradient pushing it anywhere once it catches up, so a fully trained checkpoint can be served without that watch. The paper attributes the difference to the loss itself: a cross-entropy objective keeps pushing toward hard labels indefinitely, while KL distillation against a fixed target goes quiet at convergence.
The Fine Print
These are Multiverse Computing’s own measurements of its own pipeline, reported in its paper and blog post, not an independent evaluation. The paper states that the QAH student is released open-weight as HyperNova-60B, the company’s Apache 2.0 model built from gpt-oss-120b.
The technique also depends on machinery from the company’s earlier work. Healing at the 32,000-token context lengths in the training corpus reuses a chunked KL-divergence loss that computes the divergence one sequence slice at a time rather than materializing the full vocabulary-by-sequence grid, the subject of a companion paper and post published August 10, 2026. That earlier work cut peak memory for a 32K-token distillation from 85.2 GiB to 5.45 GiB in an isolated benchmark, and it is what makes long-context healing fit inside a fixed GPU budget. The new paper also flags a reproducible quality gap between distributed-training backends as a deployment lesson, without naming a winner in the blog summary.
Why the Result Travels
The efficiency arithmetic is the same arithmetic that motivates compression in the first place, which is what makes an accuracy inversion matter. At 4-bit precision the QAH model uses roughly 4 times less weight memory than the bfloat16 student, and at half the teacher’s parameter count it roughly halves compute per token; for model families that ship in bfloat16 rather than 4-bit, the combined reduction approaches 8 times less compute per token. Multiverse’s current release line reflects the same philosophy: its Hypernova 60B 2605 checkpoint ships at 32GB of weights against 65GB for gpt-oss-120b, with the company reporting higher throughput on a single NVIDIA H200.
If the recipe holds beyond this pipeline, the implication for open-weight deployment is that the accuracy tax on 4-bit serving is not a law of nature but an artifact of who teaches the student. Multiverse’s compression work has so far been applied to other labs’ open models, and the company is selling the recipe as one a team can deploy without a multi-week hyperparameter search. The 4-bit checkpoint beating its 16-bit parent on 7 of 9 benchmarks is the evidence it chose to lead with.

