An image tokenizer defines the visual language a unified model has to learn. We study tokenizers inside unified autoregressive training, using per-task losses over text, image, T2I and I2T — and find that the best compressor is often not the most learnable language.
A discrete image tokenizer is not merely a preprocessing module: it defines the visual language that a language model must learn, align with text, and use for both visual generation and understanding. Yet existing studies mostly examine it outside the unified modeling context — through reconstruction-based metrics such as rFID, ImageNet classification accuracy, or generation-only / understanding-only downstream pipelines.
Those evaluations are valuable, but they leave open how a tokenizer affects joint modeling behavior. In unified pure-AR models, image and text tokens are modeled jointly under a shared model and training objective. Joint training with text may affect image-token modeling, while the choice of image tokenizer may in turn affect cross-modal alignment and text modeling. Consequently, design choices such as compression ratio and auxiliary losses may be optimized without fully accounting for their effects on joint image–text modeling.
We therefore study tokenizers inside unified AR training itself, using task-specific validation losses during continual pretraining as the measurement instrument. Because that instrument is not yet well characterized in this setting, we first establish how the losses behave before using them to study tokenizers.
Everything is held fixed except the image tokenizer. Modeling quality is measured as held-out loss on 50k text and 50k image–text samples, giving four task-specific losses — Text, Image, T2I and I2T.
Seven tokenizers across three families are compared under an otherwise identical recipe.
| Tokenizer | Size | B | ℒsem | Disc. | Usage | rFID↓ |
|---|---|---|---|---|---|---|
| IBQ-1024 | 0.1B | 1024 | – | PatchGAN | 99% | 2.24 |
| IBQ-8192 | 0.1B | 8192 | – | PatchGAN | 98% | 1.87 |
| IBQ-16384 | 0.1B | 16384 | – | PatchGAN | 96% | 1.37 |
| GigaTok | 0.6B | 16384 | ✓ | PatchGAN | 100% | 0.81 |
| GigaTok-DINO | 0.6B | 16384 | ✓ | DINO | 100% | 0.51 |
| UniTok† | 0.8B | 16384 | – | DINOv2-S | 100% | 1.86 |
| UniTok-sem† | 0.8B | 16384 | ✓ | DINOv2-S | 100% | 2.23 |
| Backbone | Qwen3 — 0.6B / 1.7B / 4B |
|---|---|
| Image tokens | For vocabulary size B: B new embeddings, initialized from the mean
and covariance of the original ones; LM head extended to match. Special tokens
<boi>, <eoi>,
<unconditional> (10% drop, enabling CFG). |
| Pretraining data | Up to 60M samples — 6.6M text (DataComp-LM) + 53.3M image–text: LAION-Aesthetics (score ≥ 5.5, recaptioned by InternVL3-1B), JourneyDB (recaptioned by GPT-4.5), BLIP3o-Pretrain-Short-Caption. |
| Images | 256×256, pre-tokenized before training |
| Sequence order | 80% T2I / 20% I2T |
| SFT | 2 epochs over 4.9M instruction and captioning samples |
Losses over text, image, T2I and I2T prediction all scale with data and model size, but they exhibit distinct behaviors and produce different tokenizer rankings — making an averaged loss too coarse as an analysis signal.
Finding 1. Unified multimodal training loss should be analyzed per task: task-specific losses exhibit distinct scaling behavior that an averaged loss obscures, and no single tokenizer ranking holds across tasks. (Paper § 5.1)
Validation loss measures next-token modeling quality; the benchmarks emphasize semantic faithfulness and perceptual quality. Do they agree? With tokenizer type controlled, yes: T2I loss aligns strongly with GenAI-Bench VQAScore and MJHQ-30K gFID, across data scales and hyperparameter settings. Surprisingly, I2T loss also tracks generation quality, with weaker correlation, even though it predicts text rather than image tokens. This implies that I2T loss reflects the general multimodal training progress when the recipe is fixed.
Across tokenizers the T2I loss–performance relationship shifts with the visual token space: T2I loss clusters by tokenizer type and no longer directly aligns with generation quality. I2T loss, computed over shared text tokens, is still compared on a shared basis and stays aligned with benchmark performance.
Part of that shift comes from vocabulary size (B): normalizing T2I loss by log2B recovers a more consistent loss–performance relation across the IBQ variants. The gap that remains is related to reconstruction fidelity — with the benchmark score controlled, tokenizers of the same vocabulary size follow the reverse order of their rFID ranking.
Finding 2. Token space shapes the loss–performance relationship. I2T loss, computed over a shared text vocabulary, provides a more consistent cross-tokenizer signal of generation performance, whereas T2I loss exhibits tokenizer-dependent shifts. Vocabulary normalization reduces these shifts within the IBQ family, while residual differences at a fixed vocabulary size are associated with reconstruction fidelity. (Paper § 5.2.1)
When the tokenizer is fixed (GigaTok), both the T2I and I2T losses measured before SFT stay strongly correlated with post-SFT generation performance.
Across tokenizers, pre-SFT I2T loss still correlates with post-SFT generation and general VQA (VQAv2, GQA), though only moderately. That may partly reflect differences in both task and training stage: the loss measures caption prediction during pretraining, while the benchmarks measure question answering after SFT, so caption fit is informative about VQA performance without determining it. The relationship is less consistent for specialized benchmarks such as TextVQA, which additionally require capabilities such as OCR.
Finding 3. Pretraining losses are informative about post-SFT performance. I2T loss correlates with both generation and general visual understanding across tokenizers, while the relationship between T2I loss and generation performance is tokenizer-dependent. (Paper § 5.2.2)
Reconstruction quality (measured by rFID) and how easily the resulting token space can be modeled (multimodal learnability, measured by validation losses) are separate properties that jointly affect performance — so reconstruction-based metrics alone are an incomplete basis for tokenizer study.
Finding 4. Reconstruction fidelity and multimodal learnability can diverge under unified AR training: lower rFID does not promise stronger downstream generation or understanding. (Paper § 6.1)
With the language backbone, text tokenizer and text data all held fixed, changing the image tokenizer still changes text loss. Removing image-token prediction — reformatting those samples into I2T order and training on Text+I2T only — largely closes the gap, locating the interference in the image-token prediction objective rather than in captioning. This effect is invisible to single-axis downstream analyses.
Finding 6. Image token space can affect text modeling difficulty under joint AR training. Our ablations attribute this effect to the image token prediction objective rather than to captioning (I2T). (Paper § 6.2)
With this lens in place, we revisit three design decisions through controlled ablations.
Replacing GigaTok's PatchGAN discriminator with a DINO-based one improves rFID from 0.81 to 0.51 — but none of the validation losses improve significantly, GenAI is unchanged at 0.720, and VQAv2 drops from 52.25 to 51.31.
Finding 5. Improving rFID with a DINO-based discriminator does not improve multimodal learnability or downstream performance. (Paper § 6.1)
Semantic supervision worsens reconstruction fidelity yet improves multimodal learnability. It strengthens object-level associations between image tokens and words, without consistently reducing the local n-gram entropy of the image tokens — evidence for “better visual words” rather than a simpler local visual grammar.
Finding 7. Semantic supervision improves multimodal learnability and strengthens object-level image-token–word associations, without consistently reducing empirical n-gram entropy. These observations support a “better visual words” interpretation rather than a simpler local visual grammar. (Paper § 6.3)
Larger vocabularies are known to improve reconstruction fidelity but may also change how hard image tokens are to model, so we compare IBQ at B ∈ {1024, 8192, 16384} and find the effect non-monotonic: IBQ-8192 gives the lowest normalized T2I and image loss, IBQ-16384 the best I2T loss, and the largest vocabulary still performs best downstream.
Finding 8. Vocabulary size affects multimodal learnability non-monotonically: an intermediate vocabulary gives the best T2I and image losses, yet a larger vocabulary can still benefit downstream performance, potentially through higher reconstruction fidelity. (Paper § 6.4)
Compression fidelity is only half the story. Unified tokenizer design should account for both reconstruction fidelity and joint modeling difficulty across tasks, rather than optimizing any single proxy metric. Together, this highlights the importance of studying image tokenizers as visual languages in interaction with text during joint multimodal training.
@misc{tokenizer-umm,
title = {Studying Image Tokenizers as Visual Languages in Unified Multimodal Models},
author = {Siting Li and Zhengyang Wang and Simon Shaolei Du and Xi Chen and Yang Liu},
year = {2026},
eprint = {2609.09143},
archivePrefix = {arXiv},
primaryClass = {cs.CV},
url = {https://arxiv.org/abs/2609.09143}
}