Summary
The paper introduces an autoregressive image generation method without vector quantisation for visual. The authors observe that while discrete-valued spaces facilitate representing categorical distributions, they are not necessary for autoregressive modeling. They propose modeling the *per-token* probability distribution using a diffusion process, allowing the application of autoregressive models in a continuous-valued space. This approach eliminates the need for discrete-valued tokenizers and has been experimentally validated across standard autoregressive models and generalized masked autoregressive variants.
Strengths
This work is articulated clearly, with well-founded theoretical support for its motivation. The proposed method effectively addresses the existing problems and offers significant inspiration for future research:
* Clear Motivations: Under the AR, there is no intrinsic connection between the method of next token prediction and quantisation. Using discrete distributions, e.g., categorical or multinomial distributions, for image modeling is also counterintuitive.
* Original Contributions: The work introduced the Diffusion loss with various types of AR to model the distribution of continuous tokens, thereby eliminating the need for discretisation. Although some existing literatures have used diffusion [1] or continuous token modeling [2], this work is the first to combine diffusion with AR for generative tasks with solid experiment results
* Significant Benefits: This work takes a significant step forward in advancing continuous modeling. I personally believe image quantisation is a simplification and compromise to facilitate AR-based generative models, as modeling discrete distributions is much easier. However, quantisation inevitably leads to information loss. The proposed solution effectively mitigates this potential loss. Additionally, continuous representation is more suitable for modeling objective phenomena governed by physical laws, such as images or videos.
[1] Li, Yazhe, Jorg Bornschein, and Ting Chen. "Denoising Autoregressive Representation Learning." arXiv preprint arXiv:2403.05196 (2024).
[2] Tschannen, Michael, Cian Eastwood, and Fabian Mentzer. "GIVT: Generative infinite-vocabulary transformers." arXiv preprint arXiv:2312.02116 (2023).
Weaknesses
### Concerns
Overall, this work is good, but the theoretical analysis is somewhat insufficient.
One concern is that, although quantisation is avoided during generation, the entire process still relies on an encoder/decoder. Can we establish theoretical assumptions to prove that modeling with diffusion loss has lower information loss, or that its upper bound on loss is lower than the version with quantization (although Table 2 has experimentally validated this assumption)?
Another concern is after replaced Cross entropy, can we obtain an explicit prior distribution or posterior for the whole AR system? Sec 3.1 discussed about CE in traditional AR system is for Cat distribution, but I feel I cannot find similar discussions for Diffusion in the following work.
The next question is can we model the pixel space directly instead an encoder? Is this limited by the computation cost?
### Open Questions
An open question: quantisation is not necessary any more for AR, but is the AR still necessary with diffusion loss? Seems image tokens (whether quantised or not) differ significantly from language attributes. The prior distribution of image tokens might be uniform thus current AR might still face the same drawbacks?
Another open question is that can we include a decoder in end-to-end training and escape the limitations of the tokenizer?
### Suggestions
For readers, some key links appear to be missing in the reasoning chain, e.g.:
Why we use Diffusion Loss with noisy input instead of clean image with MSE for continuous modelling? I think one potential explanation is that the objective of MSE is actually minimizing the divergence between Gaussian and token and it differs significantly from the empirical token distribution.
Questions
Please see weaknesses. My Open Questions and Suggestions will not affect my final rating.
Limitations
The author has stated limitations and social impact.