AI infrastructure firm Multiverse Computing has introduced Quantization-Aware Healing (QAH), a post-compression optimization technique designed to restore model accuracy after structural pruning and extreme quantization. Detailed in research paper 2608.20953, the method allows 4-bit compressed large language models to exceed the benchmark performance of their intermediate 16-bit unquantized counterparts.
In standard model optimization workflows, teams apply structural pruning (removing layers, attention heads, or intermediate dimensions) followed by 4-bit weight quantization to reduce memory footprint and inference latency. However, these compounding reductions typically degrade reasoning, mathematics, and code synthesis.

The Structural Distillation Bottleneck
Existing post-compression recovery strategies generally rely on one of two techniques:
- Quantization-Aware Training (QAT): Inserts fake-quantization operators into the forward pass and continues fine-tuning on task-specific cross-entropy loss. This approach requires rerunning multi-stage post-training and often suffers from optimization collapse if training continues past its empirical peak.
- Quantization-Aware Distillation (QAD): Uses output-logit Kullback-Leibler (KL) divergence to align the quantized model with a full-precision teacher. When applied to structurally compressed models, standard QAD relies on the recovered bfloat16 checkpoint as its teacher. Because that intermediate checkpoint is already an approximation of the original architecture, the student cannot exceed the degraded teacher's performance ceiling.
QAH alters this sequence by distilling directly from the uncompressed, pre-pruned model into the 4-bit compressed student. Because KL-divergence on output logits operates over probability distributions rather than internal hidden layer dimensions, the teacher and student do not need identical architectures.
Benchmark Results Across Model Scales
Multiverse Computing evaluated QAH on an uncompressed GPT-OSS 120B model pruned down to 60B parameters and quantized to MXFP4. When evaluated against the recovered 60B bfloat16 baseline across nine standard evaluations, the 4-bit QAH model scored higher on seven:
- AA-LCR (Long-Context Reasoning): 42.7 vs. 35.3 (+7.4 points)
- AIME 2025 (Mathematics): 76.3 vs. 70.7 (+5.6 points)
- Aider (Agentic Coding): 40.9 vs. 38.2 (+2.7 points)
- τ²-bench (Tool Use): 61.7 vs. 59.4 (+2.3 points)
- GPQA Diamond (Graduate Science): 67.4 vs. 65.7 (+1.7 points)
- IFBench (Instruction Following): 59.9 vs. 58.4 (+1.5 points)
- LiveCodeBench (Code Generation): 66.5 vs. 65.5 (+1.0 point)
- MMLU-Pro (Domain Knowledge): 73.8 vs. 74.0 (-0.2 points)
- SciCode (Scientific Programming): 34.2 vs. 35.6 (-1.4 points)
On LiveCodeBench, the 60B MXFP4 student scored 66.5, surpassing the original 120B MXFP4 teacher baseline of 66.0 while requiring roughly four times less weight memory than the 60B bfloat16 checkpoint and half the compute per token of the 120B model.
Training Stability and Context Scaling
In direct stability comparisons on a GPT-OSS 9B model quantized to MXFP4, QAH reached an average score of 54.9 across MMLU-Pro, LiveCodeBench, and GPQA Diamond within approximately 100 optimization steps and maintained that score across 1,200 steps. In contrast, standard QAT required roughly 700 steps to reach a peak of 54.6 before dropping by nearly 19 points at step 1,200 due to continued gradient updates against hard labels.
To support extended context windows during the healing phase, QAH incorporates a chunked KL-divergence loss implementation. By evaluating sequence slices iteratively rather than allocating the complete vocabulary-by-sequence tensor in memory, the system executes distillation runs over 32,000-token documents within fixed GPU memory allocations.



