ECCV 2026

Logit Refiner: Improving Visual Autoregressive Models
via Intra-Scale Dependency Modeling

1CompVis @ LMU Munich 2MCML

*Equal contribution

Paired VAR and Infinity samples show improved spatial coherence with Logit Refiner; the FID scaling curve improves across backbone sizes.
Better joint samples from the same pretrained backbone. Logit Refiner restores the dependencies that parallel within-scale sampling discards, improving both spatial coherence and generation quality.

Correct marginals. Incoherent joint samples.

Visual autoregressive models generate images from coarse to fine, sampling all tokens within each scale independently. Even accurate per-token predictions can produce neighboring patches that do not fit together. Logit Refiner restores these missing dependencies with a small causal transformer conditioned on frozen backbone features. The backbone still runs once per scale; only the lightweight refiner samples sequentially.

~10%Additional parametersA two-layer causal refiner
<5%Extra training computePretrained backbone stays frozen
1.83FID at 1.1B parametersBetter than VAR-d30: 1.92 at 2B
1.76FID with VAR-d30 + RefinerImageNet 256 × 256 · 50k samples

A small correction to how tokens are sampled

The backbone already reasons across the current scale. The bottleneck comes afterward: independently sampling its token distributions discards their dependencies. Logit Refiner uses those rich hidden states to model the remaining dependencies with just two causal transformer blocks.

Architecture: VAR predicts a scale in parallel; Logit Refiner combines frozen hidden states with previously sampled tokens and predicts the next token causally.
Parallel backbone, autoregressive refiner. Only the lightweight refiner runs sequentially within each scale, using KV caching. The expensive backbone still computes the scale’s hidden states in a single parallel pass.
01

Reuse pretrained features

Keep the VAR backbone frozen. Combine each hidden state with an embedding of the previous sampled token.

02

Learn the missing dependencies

Train the refiner with teacher forcing and a causal mask. Identity initialization preserves the base model’s predictions at the start of training.

03

Sample a coherent scale

Generate tokens in raster order, conditioning each prediction on tokens already sampled within the same scale.

Why correct per-token probabilities are not enough
A dataset has two valid 2-by-2 checkerboards. Independent sampling from correct 50/50 pixel marginals produces 16 possible patterns; joint sampling preserves the checkerboard constraint.
A minimal example. Two valid checkerboards have identical per-pixel marginals. Independent sampling admits 16 patterns, of which only two are valid. Conditioning on earlier tokens recovers the joint constraint.

Better generation at every backbone scale

Across VAR backbones from 310M to 2B parameters, the refiner improves FID and recall. VAR-d24 + Refiner outperforms the larger VAR-d30 backbone at roughly half the total parameter count.

Class-conditional ImageNet · 256 × 256
ModelTotal paramsFID ↓IS ↑Precision ↑Recall ↑
VAR-d16310M3.30274.40.840.51
+ Logit Refiner356M2.81267.20.810.56
VAR-d20600M2.57302.60.830.56
+ Logit Refiner671M2.17274.70.800.60
VAR-d241.0B2.09312.90.830.57
+ Logit Refiner1.1B1.83288.20.790.63
VAR-d302.0B1.92323.10.820.58
+ Logit Refiner2.2B1.76319.40.800.62

50k generated samples; values reproduced from the paper’s system-level comparison. CFG and top-k are swept individually. The lower IS values accompany the lower guidance scales that are FID-optimal for the refiner; varying guidance trades off FID and IS. ↓ lower is better; ↑ higher is better.

Paired samples across VAR depths 16, 20, 24, and 30 compare the baseline with Logit Refiner, showing improved spatial consistency at every model size.
Scaling alone leaves spatial inconsistencies. Paired samples use the same class and seed. Within each pair, vanilla VAR is above and VAR + Refiner below.
Controlled ablation: what drives the gains?
Same VAR-d16 backbone · 30 training epochs for each added-training variant
VariantJoint samplingParamsFID ↓
VAR-d16 baselineNo310M3.30
Additional backbone trainingNo310M3.12
Parallel refinerNo356M3.15
Autoregressive refinerYes356M2.81

The parallel and autoregressive refiners have the same architecture and parameter count, with different attention masks and sampling rules. The larger gain comes from modeling the within-scale joint distribution.

The same idea transfers to text-to-image

Applied to a frozen Infinity-2B backbone, Logit Refiner improves structural coherence in 1024 × 1024 text-to-image generation. Refinement is applied only to early stages, up to 6 × 6 tokens.

Selected Infinity-2B text-to-image comparisons: baseline images on top and refined images below; orange markings identify inconsistencies in the baseline.
From class labels to open-vocabulary prompts. Infinity-2B without (top) and with (bottom) the refiner. Orange marks highlight inconsistencies in the original images. These are selected qualitative examples.
HPSv3 automated preference evaluation
ModelAverage score ↑
Infinity-2B9.79
+ Logit Refiner9.91

600 images: the first 50 prompts in each of 12 HPSv3 subsets. This is an automated preference score; gains vary by subset.

Most of the gain comes early

For VAR-d16, training only the refiner takes 66 H200-hours and improves FID from 3.30 to 2.81. Training the full integrated model from scratch reaches 2.57, but costs 1,845 H200-hours.

At inference, refining only early scales gives a useful quality–speed tradeoff. Refining through 10 × 10 tokens retains 99% of the full FID improvement while reducing the refiner’s overhead by 71%. Through 8 × 8, it retains 88% with an 84% overhead reduction.

FID versus sampling time across VAR backbone depths, comparing baseline and refined models at batch sizes 1 and 16.
Quality and inference cost across model sizes. At batch size 16, the refiner improves the quality–efficiency frontier at every backbone scale. At batch size 1, it adds intermediate operating points at smaller depths and dominates from d24 onward. Sequential refinement adds latency; its benefit depends on model size and batch size.
See the early-scale tradeoff for VAR-d16
VAR-d16 FID and latency tradeoff as Logit Refiner is applied to progressively more scales.
Refine only the first few scales to retain most of the quality improvement with less sequential sampling.

Citation

@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/}
}

Download BibTeX