REVIEW 3 major objections 5 minor 57 references
Plug-and-Play Context Feature Reuse for Efficient Masked Generation
T0 review · 3 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read ReCAP speeds masked image generation up to 2.4x by reusing cached context-token features in lightweight decoding steps, with minimal FID change.
desk verdict A neat KV-cache reuse idea for bidirectional masked generation, with the MAR speedup partly riding on a separate denoising-step reduction that needs an ablation. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central mechanism is the grouped decoding pipeline that alternates Full-FE and Local-FE steps. In a Full-FE, the model computes attention over the entire sequence and caches the key-value pairs of all tokens outside the target subset; in each Local-FE, it recomputes QKV only for the small target subset, concatenates those with the cached KVs, and runs attention, reducing per-step cost from O($N^{2}$) to O(\hat{n}_t N). The stability of context features, measured as cosine similarity of pre-QKV input embeddings before and after token updates, is the empirical justification for trusting the cached KVs across Local-FE steps.
What would settle it
Compute the cosine similarity between the actual cached key and value vectors (rather than pre-QKV embeddings) across consecutive decoding steps for a small context such as K=2 tokens; if this similarity falls well below the near-1 values reported in Figure 2, then cached-KV reuse should produce noticeably worse FID than full recomputation, and ReCAP's speedups would shrink accordingly.
Extended reading notes
Core claim
The paper's central claim is that the bidirectional attention recomputation in every masked-decoding step is partly wasted work: when a step unmasks only a small subset of tokens, the feature embeddings of the already-decoded context tokens remain nearly unchanged. ReCAP operationalizes this as grouped decoding: each group begins with a full function evaluation (Full-FE) whose key-value pairs for all non-target tokens are cached, followed by one or more local function evaluations (Local-FE) that recompute QKV only for the newly decoded target subset and concatenate those with the cached KVs. The result is a (T + T')-step generation process with only T full-cost steps. On ImageNet256 class-conditional generation, MAR-H+ReCAP at (96+32) steps reaches FID 1.57 while the original MAR-H at 256 steps has FID 1.56, and per-image latency drops from 2.40s to 1.00s; similar trade-off gains appear for MaskGIT and MAGE.
Load-bearing premise
The trick only works if the internal features of already-decoded tokens barely change when a few new tokens are decoded; the paper's support for this measures the inputs to attention, not the actual key-value vectors that ReCAP reuses.
Editorial extensions
If this is right
- A masked generative model can execute more total decoding steps than full-cost evaluations, so the step-count-versus-fidelity trade-off decouples from raw compute.
- ReCAP's speedup grows with the number of Local-FEs and with the size of the decoded context, so large models and long-sequence generation benefit most.
- The same cached-KV scheme applies to encoder-decoder MGMs by caching both encoder and decoder context features, as demonstrated on MAR and MAGE.
- No retraining or architectural modification is required, so ReCAP can be layered onto future masked generators as their step counts scale.
- Replacing a subset of full evaluations with Local-FEs preserves FID closely enough that the base model's step-scaling behavior transfers to the accelerated schedule.
Reading between the lines
- Beyond the paper: if the stability trend in Figure 2 persists at higher resolutions or in non-image domains such as language and protein generation, the grouped Full-FE/Local-FE scheme could become a general acceleration primitive for non-autoregressive sequence models.
- Beyond the paper: the stability analysis measures pre-QKV input embeddings, so a stronger version of the argument would directly measure drift in the cached key and value vectors; if that drift is larger, reuse schedules may need to be more conservative.
- Beyond the paper: the insertion of Local-FEs could be made adaptive, driven by measured feature drift or a learned policy, which might close the small FID gaps seen in low-step regimes.
- Beyond the paper: combining outputs from Full-FE and Local-FE steps, rather than discarding the full evaluation's predictions, is a natural extension that could recover some of the remaining fidelity loss.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes ReCAP, a training-free module for accelerating masked generative models (MGMs) by interleaving full forward evaluations with lightweight 'Local-FE' steps that cache and reuse key-value (KV) attention features for unchanged context tokens. The method is applied to three MGMs (MaskGIT, MAGE, and MAR) on ImageNet256, covering discrete and continuous token spaces and both conditional and unconditional generation. The central reported result is that MAR-H+ReCAP with (96+32)×2 decoding steps reaches FID 1.57 in 1.00 s per image, versus FID 1.56 in 2.40 s for the original MAR-H at 256×2 steps, and that ReCAP consistently improves speed–fidelity trade-offs.
Significance. If the effect is correctly attributed, ReCAP would be a valuable, simple, and broadly applicable inference-acceleration technique: it requires no retraining, no architectural changes, and it is demonstrated on diverse MGM designs. The paper also contains useful controlled comparisons (MaskGIT-r), a cost breakdown for MAR, and comparisons against strong diffusion and autoregressive baselines. However, a central attribution problem in the MAR experiments must be resolved before the headline speedup claims can be accepted, and the supporting stability analysis is indirect. The core idea is plausible and the requested ablations are feasible within the scope of the manuscript.
major comments (3)
- [§6.2, Appendix E.2 (Table 4)] The headline MAR speedups are confounded with a change in the per-token denoising MLP: Appendix E.2 states that 'our ReCAP implementation reduces this to 50 steps for Local-FE' while the base MAR uses 100 denoising MLP steps. For MAR-H, the denoising-MLP time drops from 1.03 s to 0.46 s, a 0.57 s saving that is part of the 1.40 s total time reduction reported in Table 2; for MAR-L the corresponding denoising saving is 0.47 s to 0.14–0.16 s. Because no experiment holds the number of denoising MLP steps fixed and varies only the Full-FE/Local-FE composition, the claim that cached-KV Local-FEs are responsible for the reported 2.4× speedup is not established by the presented data. Please add an ablation that keeps the original 100 denoising MLP steps (or reports separate attention and denoising timings) while applying ReCAP's attention reuse only.
- [§5, Figure 2] The stability evidence for the core assumption measures cosine similarity of average-pooled pre-QKV input embeddings for randomly chosen K context tokens, not the actual cached K and V matrices along a real decoding trajectory. Pooling over tokens and layers can hide per-token drift, and the random-context simulation does not mirror the confidence-based or random unmasking order used during generation. Please report per-token KV cosine similarity on actual ReCAP decoding trajectories, or add an experiment that isolates the error from KV reuse by comparing a ReCAP run with a full recomputation of the same sampled tokens under the same schedule.
- [§6.1, Appendix A] The MaskGIT-r baseline is not the published MaskGIT model but a reimplementation with substantially hand-tuned sampling hyperparameters (choice temperature τ2(1)=5.5, token temperature schedule in Eq. (2), and a polynomial unmasking schedule replacing the cosine schedule), and the ReCAP hyperparameters u, T, and T′ are chosen per configuration and per model (for example, u=(T+T′)/2 by default for MAR but u=0 for MAGE). The paper should state how these hyperparameters were selected (validation set, grid search, or author expertise) and include a sensitivity analysis; without this, the 'plug-and-play' claim across models is difficult to evaluate and the possibility of favorable selection cannot be excluded.
minor comments (5)
- [General] No code or checkpoints are released, and the method depends on several implementation details (grouping, subset partitioning, denoising-MLP-step changes, and sampling schedules); the experiments would be hard to reproduce from the text alone.
- [Table 2 and Table 4] FID values are reported as point estimates without variance or confidence intervals; for differences as small as 0.01 (FID 1.56 vs. 1.57), reporting standard errors over multiple seeds or runs would materially strengthen the claim.
- [Table 2] The NFE column is ambiguous for ReCAP configurations: it mixes transformer decoding steps, denoising MLP steps, and the ×2 factor from classifier-free guidance. Please define NFE precisely for both baseline and ReCAP rows.
- [Figure 3] The color coding for context tokens, masked tokens, and target tokens is difficult to distinguish in grayscale; please add a clear legend and label the cached KVs explicitly.
- [§6.2] The sentence 'achieve up to 2∼2.4× faster inference' has a grammatical error and should be rephrased; the same passage would benefit from stating which specific configuration yields the 2× and 2.4× numbers.
Circularity Check
No significant circularity: ReCAP's efficiency gains are measured against external FID and timing benchmarks; the only self-citation is related-work context and is not load-bearing, while the denoising-MLP confound is an attribution issue rather than a circular one.
full rationale
ReCAP is an inference-time engineering method evaluated by wall-clock time and FID against the original MaskGIT, MAGE, and MAR models and against external diffusion/autoregressive baselines. The claimed 2.4x speedup is a measured comparison (e.g., MAR-H+ReCAP at (96+32)x2 achieves FID 1.57 in 1.00s versus MAR-H at 256x2 with FID 1.56 in 2.40s, Table 2), not a quantity defined to equal an input. The motivating stability hypothesis in Figure 2 is an empirical observation about feature drift; even though it measures pre-QKV input embeddings rather than the cached KV pairs, that is an evidence-quality weakness, not a circular construction, because the FID results are external validations. The only self-citation is reference [30] in Section 4, cited as related work for the observation that parallel independent updates require many refinement steps in discrete diffusion models; it is not used to justify ReCAP's design or to establish its measured results. Appendix E.2 discloses that ReCAP's MAR configurations also reduce the per-token denoising MLP from 100 to 50 diffusion steps, so the headline speedup is not purely attributable to KV reuse. This is a legitimate correctness/attribution concern, but it is not circularity: both changes are part of the method as evaluated, and the reported FID and time are measured rather than derived. Likewise, per-model hyperparameter choices (u, lt, schedules) affect generality but do not make the evaluation self-justifying. No equation reduces the claimed result to its own assumptions, and no load-bearing claim rests on the authors' prior work. The score of 2 reflects only the presence of a minor, non-load-bearing self-citation, not any circular derivation.
Assumptions & free parameters
free parameters (4)
- u (number of initial steps without Local-FEs) =
varies (e.g., 10, 12; for MAR default (T+T')/2)
- T' (number of Local-FEs) =
varies (e.g., 4, 5, 8, 10, 20, 24, 32)
- Denoising MLP steps for Local-FE in MAR =
50 (vs 100 in original)
- MaskGIT-r sampling schedule hyperparameters =
tau2(1)=5.5; tau_low in {0.65,0.68,0.72,0.75}; polynomial exponent 2.5
assumptions (2)
- standard math Transformer attention mechanics as defined in Vaswani et al. (2017)
- domain assumption Masked generative models predict tokens from univariate marginals conditioned on context, per MaskGIT/MAR.
Cite this review
Pith. "Pith review of Plug-and-Play Context Feature Reuse for Efficient Masked Generation." pith.science (2026). https://pith.science/paper/M3U3OWHT
@misc{pith2026250519089,
author = {Pith},
title = {Pith review of: Plug-and-Play Context Feature Reuse for Efficient Masked Generation},
year = {2026},
howpublished = {\url{https://pith.science/paper/M3U3OWHT}},
note = {Machine review of arXiv:2505.19089}
}
read the original abstract
Masked generative models (MGMs) have emerged as a powerful framework for image synthesis, combining parallel decoding with strong bidirectional context modeling. However, generating high-quality samples typically requires many iterative decoding steps, resulting in high inference costs. A straightforward way to speed up generation is by decoding more tokens in each step, thereby reducing the total number of steps. However, when many tokens are decoded simultaneously, the model can only estimate the univariate marginal distributions independently, failing to capture the dependency among them. As a result, reducing the number of steps significantly compromises generation fidelity. In this work, we introduce ReCAP (Reused Context-Aware Prediction), a plug-and-play module that accelerates inference in MGMs by constructing low-cost steps via reusing feature embeddings from previously decoded context tokens. ReCAP interleaves standard full evaluations with lightweight steps that cache and reuse context features, substantially reducing computation while preserving the benefits of fine-grained, iterative generation. We demonstrate its effectiveness on top of three representative MGMs (MaskGIT, MAGE, and MAR), including both discrete and continuous token spaces and covering diverse architectural designs. In particular, on ImageNet256 class-conditional generation, ReCAP achieves up to 2.4x faster inference than the base model with minimal performance drop, and consistently delivers better efficiency-fidelity trade-offs under various generation settings.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
Structured denoising diffusion models in discrete state-spaces
Jacob Austin, Daniel D Johnson, Jonathan Ho, Daniel Tarlow, and Rianne Van Den Berg. Structured denoising diffusion models in discrete state-spaces. Advances in neural information processing systems , 34:17981–17993, 2021
work page 2021
-
[2]
All are worth words: a vit backbone for score-based diffusion models
Fan Bao, Chongxuan Li, Yue Cao, and Jun Zhu. All are worth words: a vit backbone for score-based diffusion models. In NeurIPS 2022 Workshop on Score-Based Methods, 2022
work page 2022
-
[3]
Beit: Bert pre-training of image transformers
Hangbo Bao, Li Dong, Songhao Piao, and Furu Wei. Beit: Bert pre-training of image transformers. In International Conference on Learning Representations (ICLR) , 2022
work page 2022
-
[4]
Freeman, Michael Rubinstein, Yuanzhen Li, and Dilip Krishnan
Huiwen Chang, Han Zhang, Jarred Barber, Aaron Maschinot, Jose Lezama, Lu Jiang, Ming-Hsuan Yang, Kevin Murphy, William T. Freeman, Michael Rubinstein, Yuanzhen Li, and Dilip Krishnan. Muse: Text-to- image generation via masked generative transformers. In Proceedings of the 40th International Conference on Machine Learning (ICML) , pages 4055–4075. PMLR, 2023
work page 2023
-
[5]
Huiwen Chang, Han Zhang, Lu Jiang, Ce Liu, and William T. Freeman. Maskgit: Masked generative image transformer. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 11315–11325, 2022
work page 2022
-
[6]
Causal diffusion transformers for generative modeling
Chaorui Deng, Deyao Zhu, Kunchang Li, Shi Guang, and Haoqi Fan. Causal diffusion transformers for generative modeling. arXiv preprint arXiv:2412.12095, 2024
arXiv 2024
-
[7]
ImageNet: A large-scale hierarchical image database
Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. ImageNet: A large-scale hierarchical image database. In CVPR, 2009
2009
-
[8]
Bert: Pre-training of deep bidi- rectional transformers for language understanding
Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidi- rectional transformers for language understanding. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies , pages 4171–4186, 2019
2019
Show all 57 references
-
[9]
Diffusion models beat GANs on image synthesis
Prafulla Dhariwal and Alexander Nichol. Diffusion models beat GANs on image synthesis. In NeurIPS, 2021
2021
-
[10]
Imagebart: Bidirectional context with multinomial diffusion for autoregressive image synthesis
Patrick Esser, Robin Rombach, Andreas Blattmann, and Bjorn Ommer. Imagebart: Bidirectional context with multinomial diffusion for autoregressive image synthesis. Advances in neural information processing systems, 34:3518–3532, 2021
2021
-
[11]
Taming transformers for high-resolution image synthesis
Patrick Esser, Robin Rombach, and Björn Ommer. Taming transformers for high-resolution image synthesis. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 12873–12883, 2021
2021
-
[12]
Fluid: Scaling autoregressive text-to-image generative models with continuous tokens
Lijie Fan, Tianhong Li, Siyang Qin, Yuanzhen Li, Chen Sun, Michael Rubinstein, Deqing Sun, Kaiming He, and Yonglong Tian. Fluid: Scaling autoregressive text-to-image generative models with continuous tokens. arXiv preprint arXiv:2410.13863, 2024
-
[13]
Mdtv2: Masked diffusion transformer is a strong image synthesizer
Shanghua Gao, Pan Zhou, Ming-Ming Cheng, and Shuicheng Yan. Mdtv2: Masked diffusion transformer is a strong image synthesizer. arXiv preprint arXiv:2303.14389, 2023
2023 arXiv
-
[14]
Fully non-autoregressive neural machine translation: Tricks of the trade
Jiatao Gu and Xiang Kong. Fully non-autoregressive neural machine translation: Tricks of the trade. arXiv preprint arXiv:2012.15833, 2020
2012 arXiv
-
[15]
Vector quantized diffusion model for text-to-image synthesis
Shuyang Gu, Dong Chen, Jianmin Bao, Fang Wen, Bo Zhang, Dongdong Chen, Lu Yuan, and Baining Guo. Vector quantized diffusion model for text-to-image synthesis. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages 10696–10706, 2022
2022
-
[16]
Diffit: Diffusion vision transformers for image generation
Ali Hatamizadeh, Jiaming Song, Guilin Liu, Jan Kautz, and Arash Vahdat. Diffit: Diffusion vision transformers for image generation. In European Conference on Computer Vision, pages 37–55. Springer, 2024
2024
-
[17]
Masked autoencoders are scalable vision learners
Kaiming He, Xinlei Chen, Saining Xie, Yanghao Li, Piotr Dollár, and Ross Girshick. Masked autoencoders are scalable vision learners. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 15979–15988, 2022
2022
-
[18]
GANs trained by a two time-scale update rule converge to a local nash equilibrium
Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, and Sepp Hochreiter. GANs trained by a two time-scale update rule converge to a local nash equilibrium. In NIP, 2017
2017
-
[19]
Classifier-free diffusion guidance
Jonathan Ho and Tim Salimans. Classifier-free diffusion guidance. arXiv:2207.12598, 2022. 10
2022 arXiv
-
[20]
Understanding diffusion objectives as the elbo with simple data augmentation
Diederik Kingma and Ruiqi Gao. Understanding diffusion objectives as the elbo with simple data augmentation. Advances in Neural Information Processing Systems , 36:65484–65516, 2023
2023
-
[21]
Applying guidance in a limited interval improves sample and distribution quality in diffusion models.arXiv preprint arXiv:2404.07724, 2024
Tuomas Kynkäänniemi, Miika Aittala, Tero Karras, Samuli Laine, Timo Aila, and Jaakko Lehtinen. Applying guidance in a limited interval improves sample and distribution quality in diffusion models.arXiv preprint arXiv:2404.07724, 2024
2024 arXiv
-
[22]
Autoregressive image generation using residual quantization
Doyup Lee, Chiheon Kim, Saehoon Kim, Minsu Cho, and Wook-Shin Han. Autoregressive image generation using residual quantization. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 11523–11532, 2022
2022
-
[23]
Draft-and-revise: Effective image generation with contextual rq-transformer
Doyup Lee, Chiheon Kim, Saehoon Kim, Minsu Cho, and WOOK SHIN HAN. Draft-and-revise: Effective image generation with contextual rq-transformer. Advances in Neural Information Processing Systems , 35:30127–30138, 2022
2022
-
[24]
Fast inference from transformers via speculative decoding
Yaniv Leviathan, Matan Kalman, and Yossi Matias. Fast inference from transformers via speculative decoding. In International Conference on Machine Learning , pages 19274–19286. PMLR, 2023
2023
-
[25]
Improved masked image generation with token- critic
José Lezama, Huiwen Chang, Lu Jiang, and Irfan Essa. Improved masked image generation with token- critic. In European Conference on Computer Vision, pages 70–86. Springer, 2022
2022
-
[26]
Discrete predictor- corrector diffusion models for image synthesis
Jose Lezama, Tim Salimans, Lu Jiang, Huiwen Chang, Jonathan Ho, and Irfan Essa. Discrete predictor- corrector diffusion models for image synthesis. In The Eleventh International Conference on Learning Representations, 2022
2022
-
[27]
Mage: Masked generative encoder to unify representation learning and image synthesis
Tianhong Li, Huiwen Chang, Shlok Kumar Mishra, Han Zhang, Dina Katabi, and Dilip Krishnan. Mage: Masked generative encoder to unify representation learning and image synthesis. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages ...
2023
-
[28]
Return of unconditional generation: A self-supervised representation generation method
Tianhong Li, Dina Katabi, and Kaiming He. Return of unconditional generation: A self-supervised representation generation method. Advances in Neural Information Processing Systems , 37:125441– 125468, 2024
2024
-
[29]
Autoregressive image generation without vector quantization
Tianhong Li, Yonglong Tian, He Li, Mingyang Deng, and Kaiming He. Autoregressive image generation without vector quantization. Advances in Neural Information Processing Systems , 37:56424–56445, 2024
2024
-
[30]
Discrete copula diffusion
Anji Liu, Oliver Broadrick, Mathias Niepert, and Guy Van den Broeck. Discrete copula diffusion. arXiv preprint arXiv:2410.01949, 2024
2024 arXiv
-
[31]
Maskpredict: Parallel decoding of conditional masked language models
Marjan Ghazvininejad Omer Levy Yinhan Liu and Luke Zettlemoyer. Maskpredict: Parallel decoding of conditional masked language models. In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing.—-2019, 2019
2019
-
[32]
Discrete diffusion modeling by estimating the ratios of the data distribution
Aaron Lou, Chenlin Meng, and Stefano Ermon. Discrete diffusion modeling by estimating the ratios of the data distribution. arXiv preprint arXiv:2310.16834, 2023
2023 arXiv
-
[33]
Dpm-solver: A fast ode solver for diffusion probabilistic model sampling in around 10 steps
Cheng Lu, Yuhao Zhou, Fan Bao, Jianfei Chen, Chongxuan Li, and Jun Zhu. Dpm-solver: A fast ode solver for diffusion probabilistic model sampling in around 10 steps. Advances in Neural Information Processing Systems, 35:5775–5787, 2022
2022
-
[34]
Dpm-solver++: Fast solver for guided sampling of diffusion probabilistic models
Cheng Lu, Yuhao Zhou, Fan Bao, Jianfei Chen, Chongxuan Li, and Jun Zhu. Dpm-solver++: Fast solver for guided sampling of diffusion probabilistic models. arXiv preprint arXiv:2211.01095, 2022
2022 arXiv
-
[35]
Sit: Exploring flow and diffusion-based generative models with scalable interpolant transformers
Nanye Ma, Mark Goldstein, Michael S Albergo, Nicholas M Boffi, Eric Vanden-Eijnden, and Saining Xie. Sit: Exploring flow and diffusion-based generative models with scalable interpolant transformers. In European Conference on Computer Vision, pages 23–40. Springer, 2024
2024
-
[36]
Revisiting non-autoregressive transformers for efficient image synthesis
Zanlin Ni, Yulin Wang, Renping Zhou, Jiayi Guo, Jinyi Hu, Zhiyuan Liu, Shiji Song, Yuan Yao, and Gao Huang. Revisiting non-autoregressive transformers for efficient image synthesis. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 70...
2024
-
[37]
Adanat: Exploring adaptive policy for token-based image generation
Zanlin Ni, Yulin Wang, Renping Zhou, Rui Lu, Jiayi Guo, Jinyi Hu, Zhiyuan Liu, Yuan Yao, and Gao Huang. Adanat: Exploring adaptive policy for token-based image generation. In European Conference on Computer Vision, pages 302–319. Springer, 2024
2024
-
[38]
Dinov2: Learning robust visual features without supervision
Maxime Oquab, Timothée Darcet, Théo Moutakanni, Huy V o, Marc Szafraniec, Vasil Khalidov, Pierre Fernandez, Daniel Haziza, Francisco Massa, Alaaeldin El-Nouby, et al. Dinov2: Learning robust visual features without supervision. arXiv preprint arXiv:2304.07193, 2023
2023 arXiv
-
[39]
Scalable diffusion models with Transformers
William Peebles and Saining Xie. Scalable diffusion models with Transformers. In ICCV, 2023
2023
-
[40]
Strait: Non- autoregressive generation with stratified image transformer
Shengju Qian, Huiwen Chang, Yuanzhen Li, Zizhao Zhang, Jiaya Jia, and Han Zhang. Strait: Non- autoregressive generation with stratified image transformer. arXiv preprint arXiv:2303.00750, 2023
2023 arXiv
-
[41]
Improving language understanding by generative pre-training
Alec Radford, Karthik Narasimhan, Tim Salimans, and Ilya Sutskever. Improving language understanding by generative pre-training. OpenAI, 2018
2018
-
[42]
Language models are unsupervised multitask learners
Alec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language models are unsupervised multitask learners. 2019. 11
2019
-
[43]
Generating diverse high-fidelity images with vq-vae-2
Ali Razavi, Aäron van den Oord, and Oriol Vinyals. Generating diverse high-fidelity images with vq-vae-2. In Advances in Neural Information Processing Systems (NeurIPS) , volume 32, pages 14837–14847, 2019
2019
-
[44]
Beyond next-token: Next-x prediction for autoregressive visual generation
Sucheng Ren, Qihang Yu, Ju He, Xiaohui Shen, Alan Yuille, and Liang-Chieh Chen. Beyond next-token: Next-x prediction for autoregressive visual generation. arXiv preprint arXiv:2502.20388, 2025
2025 arXiv
-
[45]
High-resolution image synthesis with latent diffusion models
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Björn Ommer. High-resolution image synthesis with latent diffusion models. In CVPR, 2022
2022
-
[46]
Improved techniques for training GANs
Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training GANs. In NeurIPS, 2016
2016
-
[47]
Fast transformer decoding: One write-head is all you need
Noam Shazeer. Fast transformer decoding: One write-head is all you need. arXiv preprint arXiv:1911.02150, 2019
1911 arXiv
-
[48]
Visual autoregressive modeling: Scalable image generation via next-scale prediction
Keyu Tian, Yi Jiang, Zehuan Yuan, Bingyue Peng, and Liwei Wang. Visual autoregressive modeling: Scalable image generation via next-scale prediction. Advances in neural information processing systems , 37:84839–84865, 2024
2024
-
[49]
Givt: Generative infinite-vocabulary transformers
Michael Tschannen, Cian Eastwood, and Fabian Mentzer. Givt: Generative infinite-vocabulary transformers. In European Conference on Computer Vision, pages 292–309. Springer, 2024
2024
-
[50]
Neural discrete representation learning
Aäron van den Oord, Oriol Vinyals, and Koray Kavukcuoglu. Neural discrete representation learning. In Advances in Neural Information Processing Systems (NeurIPS) , volume 30, pages 6306–6315, 2017
2017
-
[51]
Gomez, Łukasz Kaiser, and Illia Polosukhin
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Advances in Neural Information Processing Systems, volume 30, pages 5998–6008, 2017
2017
-
[52]
Maskbit: Embedding-free image generation via bit tokens
Mark Weber, Lijun Yu, Qihang Yu, Xueqing Deng, Xiaohui Shen, Daniel Cremers, and Liang-Chieh Chen. Maskbit: Embedding-free image generation via bit tokens. arXiv preprint arXiv:2409.16211, 2024
2024 arXiv
-
[53]
Effective and efficient masked image generation models
Zebin You, Jingyang Ou, Xiaolu Zhang, Jun Hu, Jun Zhou, and Chongxuan Li. Effective and efficient masked image generation models. arXiv preprint arXiv:2503.07197, 2025
2025
-
[54]
Vector-quantized image modeling with improved vqgan.arXiv preprint arXiv:2110.04627, 2021
Jiahui Yu, Xin Li, Jing Yu Koh, Han Zhang, Ruoming Pang, James Qin, Alexander Ku, Yuanzhong Xu, Jason Baldridge, and Yonghui Wu. Vector-quantized image modeling with improved vqgan.arXiv preprint arXiv:2110.04627, 2021
2021 arXiv
-
[55]
Language model beats diffusion–tokenizer is key to visual generation
Lijun Yu, José Lezama, Nitesh B Gundavarapu, Luca Versari, Kihyuk Sohn, David Minnen, Yong Cheng, Vighnesh Birodkar, Agrim Gupta, Xiuye Gu, et al. Language model beats diffusion–tokenizer is key to visual generation. arXiv preprint arXiv:2310.05737, 2023
-
[56]
Representation alignment for generation: Training diffusion transformers is easier than you think
Sihyun Yu, Sangkyung Kwak, Huiwon Jang, Jongheon Jeong, Jonathan Huang, Jinwoo Shin, and Saining Xie. Representation alignment for generation: Training diffusion transformers is easier than you think. arXiv preprint arXiv:2410.06940, 2024
-
[57]
sweet spot
Yixiu Zhao, Jiaxin Shi, Feng Chen, Shaul Druckmann, Lester Mackey, and Scott Linderman. Informed correctors for discrete diffusion models. arXiv preprint arXiv:2407.21243, 2024. 12 Supplementary Material A Implementation Details of MaskGIT-r First, we adopt the pretrained Mask...
2024
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.