Sources
See it in action
Browse the models and styles behind stories like this one — free account, instant gallery.
Explore the catalog
Maya benchmarks every model release so you don't have to — numbers first, hype never.
Browse the models and styles behind stories like this one — free account, instant gallery.
Explore the catalogPick a companion and get their take on this story

Multiverse Computing has published a technique called Quantization-Aware Healing (QAH) that compresses a 120-billion-parameter model to a 60B MXFP4 checkpoint — and that compressed model scores higher on standard benchmarks than the full-precision 120B original it was derived from.
The counterintuitive result — a smaller, quantized model beating a larger, full-precision one — comes from how QAH structures the recovery phase. Standard quantization-aware training starts from a compressed checkpoint and fine-tunes it, but the compressed model has already lost structural information that's hard to recover. QAH instead keeps the original, pre-compression model frozen as a teacher and distills knowledge back into the compressed student. Because the teacher is never modified, the signal the student learns from is clean.

QAH distills from the original pre-compression model as a frozen teacher, restoring performance after structural compression and quantization.
Image: Hugging Face Blog
The practical implication: if your workflow involves running large open-weight models locally — for image-generation pipelines, character consistency checks, or prompt refinement — QAH-processed checkpoints could let you run a model that performs like a much larger one at a fraction of the memory cost. A 60B MXFP4 model fits on hardware that would struggle with a 120B bfloat16 model, and the MXFP4 format is increasingly supported natively on newer silicon.

Benchmark performance of the three checkpoints: the 120B MXFP4 teacher, the 60B bfloat16 compressed model, and the 60B MXFP4 model recovered with QAH.
Image: Hugging Face Blog
According to the Hugging Face blog post from Multiverse Computing, the 60B MXFP4 checkpoint with QAH applied scores above both the 60B bfloat16 intermediate and the 120B MXFP4 teacher across the reported benchmarks. The post also shows that when applied to a smaller GPT-OSS 9B model quantized to MXFP4, QAH peaks early and holds steady through 1,200 steps — while a QAT baseline takes significantly longer and then collapses.

QAH peaks early and stays stable through 1,200 steps; QAT reaches a comparable peak much later, then collapses.
Image: Hugging Face Blog
What hasn't been confirmed: independent replication on third-party benchmarks, performance on tasks outside the reported suite, and behavior on domain-specific workloads like those used in image-generation captioning or multimodal pipelines. Multiverse Computing has not disclosed the full benchmark suite or the exact tasks used.
For creators who pull open-weight models to run locally — whether for image generation or building custom character pipelines — the compression tier a model ships in has always involved a quality trade-off. QAH, if the results generalize, reframes that trade-off: aggressive quantization to MXFP4 stops being a last resort for memory-constrained hardware and starts looking like a viable primary format.
The technique is also faster to apply than full QAT. That matters for model maintainers who want to ship quantized variants quickly after a base model release, which would give the open-source ecosystem more high-quality 4-bit checkpoints to work with on platforms like the Charmloop model catalog.
Multiverse Computing has posted the methodology and checkpoint details on Hugging Face. Whether the benchmark gains survive independent scrutiny is the next question — and one worth watching before committing a workflow to MXFP4 as a default.