Quantization-Aware Healing: a compressed, 4-bit model that outperforms its full-precision original
Back to Articles Quantization-Aware Healing: a compressed, 4-bit model that outperforms its full-precision original Team Article Published August 25, 2026 Upvote - Antonio Tiene AntonioTN Follow MultiverseComputingCAI Iker García-Ferrero Iker Follow MultiverseComputingCAI Ali Hashemi ali-hashemi Follow MultiverseComputingCAI Bakbergen Ryskulov bryskulov-mc Follow MultiverseComputingCAI Making a large language model smaller almost always comes with a cost.
The now-standard recipe for efficient deployment is to compress the architecture first, cutting the parameter count by removing layers, heads, or neurons, and then quantize the remaining weights down to 4 bits to shrink memory and compute further.
Both steps save a lot, but together they systematically degrade the capabilities people actually care about: reasoning, mathematical problem-solving, and code generation.Because of this, serious deployment pipelines add a recovery step, usually called healing, before the model goes into production.
Recent open-weight releases such as gpt-oss, NVIDIA's Nemotron family, and our own Hypernova 60B all rely on some version of this compress-then-heal approach.
Our latest paper, Quantization-Aware Healing: A Practical Recipe for Recovering Compressed, 4-Bit LLMs, asks a question that the field has mostly left open: once a model has already been through structural compression, not just quantization, how well does that recovery step actually work, and what is the right way to do it?
We introduce Quantization-Aware Healing (QAH), and applied to a GPT-OSS 120B model compressed to 60B parameters and quantized to MXFP4, it produces a model that beats its own full-precision (bfloat16) version on 7 of 9 benchmarks.
The 4-bit model ends up smaller, cheaper to run, and more accurate than the checkpoint it was quantized from.This inverts the usual relationship between a 4-bit model and the 16-bit model it came from.
Why the usual healing methods fall short here Most efficiency pipelines follow the same three steps: compress the architecture, quantize the compressed weights, then heal the damage.The difference between methods is entirely in that last step.
The dominant healing recipe is quantization-aware training (QAT).It inserts fake-quantization operators into the forward pass and keeps fine-tuning the model on a task loss, so the weights learn to tolerate the low-precision representation.
In practice this means re-running an already expensive multi-stage post-training process, supervised fine-tuning, RLHF, agentic tuning, through a noisier, lower-precision forward pass.
It is costly, and as our results show, it can also become unstable if training continues too long past its best point.An alternative, quantization-aware distillation (QAD), avoids re-running that history.
Instead of a task loss, it distills a frozen full-precision teacher directly into the quantized student through a KL-divergence loss on the output logits.This works well when the only change is quantization, because a genuine full-precision version of the exact same model exists to act as teacher.
But once a model has gone through structural compression, fewer layers, heads, or neurons, and not just fewer bits, that assumption breaks.There is no independently trained full-precision version of the smaller architecture.
The only candidate teacher is the recovered bfloat16 checkpoint, which is itself a distilled approximation of the original model.Distilling from it anchors the quantized student to a degraded target and caps its accuracy at that recovered checkpoint's own ceiling.
So the question of how to heal a model that has been both structurally compressed and quantized was, until now, genuinely open.Our approach QAH removes that ceiling with one change: it distills directly from the original, pre-compression model rather than from the recovered one.
Teacher and student do not even share an architecture.The teacher is full-size and full-precision, the student is half the size and running in MXFP4.Because a teacher's output distribution is architecture-agnostic, nothing about the size or shape mismatch prevents the transfer.
The student never sees hard labels, only the teacher's output distribution, matched through KL divergence on the logits.This reframes what the quantization stage is doing.Under QAH it is no longer a lossy postprocessing step applied after healing is finished.
It is a second, full pass of distillation against the original teacher, supervision that the bfloat16 checkpoint never received.
The 4-bit student is not compensating for information lost to quantization; it is picking up information the earlier recovery stage did not have the time or data to transfer.There is also a stability benefit that falls out of the loss itself.
Because KL distillation ties the student to a fixed teacher distribution, once the student catches up there is no further pressure for it to drift.A cross-entropy task loss, by contrast, keeps pushing the student toward hard labels indefinitely.
That difference turns out to matter for both accuracy and training stability, as the comparison below shows.
To make QAH work at long context, where the healing corpus includes documents up to 32k tokens, we reuse the memory-efficient chunked KL-divergence loss from our companion paper on efficient distillation.
That loss computes the KL one slice of the sequence at a time and never materializes the full vocabulary-by-sequence grid, which is what makes 32k-token healing fit inside a fixed GPU memory budget.We covered the mechanics of that loss in a previous post.QAH overview.
After structural compression and quantization, capabilities drop sharply.QAH distills from the original model, a frozen teacher whose logits are precomputed offline, rather than from the recovered checkpoint.Source: paper Figure 1.
Results We applied QAH to a GPT-OSS 120B model, compressed to 60B parameters and recovered in bfloat16, then re-quantized to MXFP4 under QAH.The natural comparison is against that same 60B model's bfloat16 checkpoint, the best full-precision version of this architecture that exists.
The QAH model wins on 7 of the 9 benchmarks.Benchmark 120B teacher (MXFP4) 60B BF16 (recovered) 60B MXFP4 (QAH) QAH vs BF16 AA-LCR (long-context reasoning) 50.0 35.3 42.7 +7.4 AIME 2025 (math) 80.0 70.7 76.3 +5.6 Aider (agentic coding) 45.3 38.2 40.9 +2.7 τ²-bench (tool use) 68.4 59.4 61.7 +2.
3 GPQA Diamond (science) 69.0 65.7 67.4 +1.7 IFBench (instruction following) 63.3 58.4 59.9 +1.5 LiveCodeBench (coding) 66.0 65.5 66.5 +1.0 MMLU-Pro (knowledge) 78.0 74.0 73.8 −0.2 SciCode (science coding) 37.5 35.6 34.2 −1.
4 The two benchmarks where QAH trails, MMLU-Pro and SciCode, lose by less than a point and a half.Everywhere else the 4-bit model is ahead of its own 16-bit source, and the largest gains land on exactly the capabilities compression usually damages most: long-context reasoning (+7.
4 on AA-LCR) and math (+5.6 on AIME 2025).The comparison against the original 120B teacher is just as telling.Despite running at half the teacher's parameter count and roughly a quarter of its weight memory, the QAH model surpasses the full-size teacher on LiveCodeBench (66.5 vs.66.
0) and comes within 1.6 points on GPQA Diamond (67.4 vs.69.0).The largest remaining gap against the teacher is on AA-LCR, an extreme long-context benchmark where the capacity lost to compression is intrinsically the hardest to recover.
The 4-bit QAH model matches or beats its bfloat16 source on 7 of 9 benchmarks, and beats the full-size teacher on LiveCodeBench.Source: paper Figure 2.
QAH against QAT, head to head To isolate the effect of the loss function from everything else, we also compared QAH directly against QAT under matched conditions, quantizing a GPT-OSS 9B model to MXFP4 and tracking average performance across MMLU-Pro, LiveCodeBench, and GPQA Diamond as training progresses.
Both methods reach a similar peak, 54.9 for QAH against 54.6 for QAT, so on best-case accuracy they are effectively tied.The difference is in how they get there and what happens afterwards.
QAH reaches its peak in about 100 steps, roughly 7 times faster than QAT's 700, and then stays within about two points of that peak for the rest of training.QAT collapses sharply once past its peak, shedding nearly 19 points by step 1,200.
The practical consequence is a real deployment risk difference.A QAT checkpoint needs careful early stopping against a held-out signal to avoid shipping a model that has already started to degrade, whereas a sufficiently trained QAH checkpoint can be served safely because it simply does not drift.
This is consistent with the mechanism: KL distillation against a frozen teacher gives the student no incentive to move once it matches the teacher, while a cross-entropy objective keeps pushing on hard labels and eventually erodes capabilities the model inherited from the original.QAH peaks at 54.
9 in roughly 100 steps and holds; QAT reaches 54.6 only around step 700, then loses nearly 19 points by step 1,200.Source: paper Figure 3.What this changes in practice The accuracy story comes paired with the efficiency story that motivated compression in the first place.
At 4-bit precision the QAH model uses roughly 4 times less weight memory than the bfloat16 student, and at half the parameter count of the 120B teacher it roughly halves compute per token, which is what lets it run on substantially smaller hardware.
For model families that ship in bfloat16 rather than 4-bit, the combined parameter and precision reduction would be closer to 8 times less compute per token.The takeaway is that a compressed, 4-bit model does not have to be a lower-accuracy version of its full-precision counterpart.
With this healing recipe it can be smaller, cheaper to serve, and more accurate at the same time, and it reaches that point in a fraction of the training a QAT recipe would need.Quantization stops being a tax you pay for efficiency and becomes an extra opportunity to teach the model.
This work is part of Multiverse Computing's ongoing research into making large models smaller and cheaper to run without giving up the capabilities that make them useful.It sits alongside our companion work on efficient distillation, which supplies the long-context training machinery QAH depends on.
Want the full technical details, including the healing pipeline, the chunked KL implementation for long-context healing, and the distributed-training findings?Read the full paper, or get in touch with our team to talk about applying compression and healing to your own models.
Models mentioned in this article 2 Papers mentioned in this article 1 More from this author Making Knowledge Distillation Cheap Enough to Run at Scale 37 August 10, 2026 Community EditPreview Upload images, audio, and videos by dragging in the text input, pasting, or clicking here.
Tap or paste here to upload images Comment · Sign up or log in to comment Upvote - Models mentioned in this article 2 Papers mentioned in this article 1
Related
相關文章

Claude兩個新模型實測流出,空間推理封神,算力直接榨乾了
27分鐘前AI開始替人類調用AI,token用量已是人類5.2倍4小時前讓Claude改報錯,它卻把紅燈換成了黃燈,三星芯片驗證,AI三次闖禍9小時前閱讀更多內容,狠戳這裡選靠譜AI,看真實評測查看AI測評官方交流社區加入諮詢項目審核和入駐聯繫項目推薦訂閱號關注下一篇高盛大佬警告,過度使用AI,人會慢慢喪失推理能力AI能幹活,但會把人變廢?

四位掌權者,四種命運:美國四大AI巨頭全景
更關鍵的是節奏。8 月 13 日,Google 又拋出了 Gemini 3.7 Flash,主打編碼場景與商業自動化,輸入價格低至每百萬 token 0.75 美元、輸出 3.75 美元——僅為前代的一半。這套模型已經入駐 Gemini Spark 訂閱服務、面向 Google AI Pro 與 Ultra 用戶開放,並行接入 Google AI Studio及新上線的 agentic 開發平臺 Antigravity。但皮查伊麵對的並非全是好消息。第一是旗艦模型的“跳票焦慮”。市場長期以 Gemini 3.
微軟 CEO 納德拉示警:企業要掌控 Token 資本,使用 AI 不能押注單一模型
納德拉認為,有別於面向普通消費者的 AI 運營邏輯,企業會持續創造知識,這些知識應留在企業內部,而不應被綁定到某個模型或服務商。IT之家援引博文介紹,這裡的“Token 資本”涵蓋提示詞上下文、員工與模型的交互記錄,以及員工使用模型的方式等,這是企業在使用 AI 時所積累的知識。

DeepSeek-V4-PRO AI 模型測試:英偉達 Vera Rubin 每兆瓦吞吐量達 GB300 的 30 倍
作者:小泵 責編:小泵 評論: 8 月 24 日消息,英偉達昨日使用 SemiAnalysis AgentX 工作負載,以 DeepSeek-v4-PRO 1.6T 模型評估測試,顯示 Vera Rubin 每兆瓦吞吐量達到 Blackwell 的 30 倍。
美媒納悶:缺芯少錢,中國AI為何還追得這麼快?
開源技術與算力效率:以少勝多的追趕路徑報道稱,中美兩國多名行業人士認為,中國最好的AI模型目前與美國最先進模型的能力差距已經縮小至數月。報道認為,美國AI公司的技術進展、海外人才迴流以及中國本土研究網絡,共同加快了中國AI公司的追趕速度。但算力仍是中國AI企業面臨的主要制約。梁文鋒今年5月表示,芯片而非人才,是中美AI公司之間最關鍵的差距。

微軟 CEO 納德拉示警:企業要掌控 Token 資本,使用 AI 不能押注單一模型
作者:故淵 責編:故淵 評論: 8 月 25 日消息,科技媒體 Windows Latest 今天(8 月 25 日)發佈博文,報道稱微軟首席執行官薩蒂亞 · 納德拉(Satya Nadella)警告稱,企業若依賴單一人工智能模型,可能把自身知識和思考能力“外包”給模型提供商,甚至失去獨立生存能力。