Meimingwei Li1,* · Stefan Andreas Baumann1,2,* · Felix Krause1,2 · Björn Ommer1,2
1 CompVis @ LMU Munich 2 Munich Center for Machine Learning (MCML)
* Equal contribution
Logit Refiner improves visual autoregressive image generation by restoring dependencies between tokens within each scale. A lightweight causal transformer samples tokens conditioned on frozen backbone features, improving spatial coherence while keeping the backbone unchanged.
- Lightweight: two causal transformer blocks, approximately 10% additional parameters, and less than 5% of the base model’s training compute.
- Effective across scales: improves FID for every tested VAR backbone, from 310M to 2B parameters.
- Generalizes to text-to-image: improves spatial coherence with a frozen Infinity-2B backbone at 1024 × 1024 resolution.
Release status: The paper and project page are available. Model code and checkpoints are not yet included in this repository.
VAR predicts all tokens within a scale in parallel, then samples them independently. Logit Refiner restores the missing dependencies by conditioning each token on previously sampled tokens within that scale. Only the small refiner runs sequentially, using KV caching; the backbone still runs once per scale in parallel.
The refiner is trained with teacher forcing on a frozen backbone. Identity initialization preserves the base model’s predictions at the start of training. See the paper for the architecture and controlled ablations.
| Backbone | VAR params | With refiner | VAR FID ↓ | Refined FID ↓ |
|---|---|---|---|---|
| VAR-d16 | 310M | 356M | 3.30 | 2.81 |
| VAR-d20 | 600M | 671M | 2.57 | 2.17 |
| VAR-d24 | 1.0B | 1.1B | 2.09 | 1.83 |
| VAR-d30 | 2.0B | 2.2B | 1.92 | 1.76 |
Class-conditional generation with 50k samples; classifier-free guidance and top-k are swept individually. Parameter counts include the full model. Lower FID is better.
VAR-d24 + Refiner outperforms VAR-d30 at roughly half the parameter count.
On Infinity-2B, the average HPSv3 automated preference score improves from 9.79 to 9.91, evaluated on 600 images across 12 subsets. Refinement is applied only to early stages, up to 6 × 6 tokens.
For VAR-d16, training the refiner takes 66 H200-hours. Refining through 10 × 10 tokens retains 99% of the full FID improvement while reducing refiner overhead by 71%, relative to full refinement.
See the project page for text-to-image examples, full metrics, and quality–speed tradeoffs.
@inproceedings{li2026logitrefiner,
title = {Logit Refiner: Improving Visual Autoregressive Models
via Intra-Scale Dependency Modeling},
author = {Li, Meimingwei and Baumann, Stefan Andreas and
Krause, Felix and Ommer, Bj{\"o}rn},
booktitle = {European Conference on Computer Vision (ECCV)},
year = {2026},
url = {https://compvis.github.io/logit-refiner/}
}
