REVIEW 3 major objections 7 minor 4 cited by
Masked Autoencoders Are Effective Tokenizers for Diffusion Models
T0 review · 3 major / 7 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read This paper claims that what makes a latent space good for diffusion models is its structure, not the variational regularization of the tokenizer, and that a masked-trained plain autoencoder can deliver state-of-the-art image generation.
desk verdict Strong empirical tokenizer paper that deserves a referee; the theory is the weak link and should not gate acceptance. 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
MAETok is a plain 1D autoencoder whose ViT encoder takes image patch tokens plus $L=128$ learnable latent tokens, randomly masks 40-60% of patch tokens, and reconstructs them through a ViT decoder and auxiliary shallow decoders that predict HOG, DINOv2, SigCLIP, and (on the LAION model) BPE text-caption targets. The theoretical engine is the GMM analysis: Theorem 2.1 (Appendix Theorem A.7), built on prior score-learning bounds, shows DDPM needs $n \geq \Theta(K^4 d^5 B^6 / \varepsilon^2)$ samples to reach $O(T \varepsilon^2)$ KL error when the latent distribution is a $K$-mode Gaussian mixture. A final decoder fine-tuning stage freezes the encoder to keep the organized latent space while recovering pixel-level fidelity.
What would settle it
Train two tokenizers that match in measured GMM mode count and rFID but differ by whether the encoder is trained with or without the variational KL objective, then train identical SiT-XL diffusion models on both; the claim that latent structure alone matters fails if the variational tokenizer still yields a gFID gap larger than evaluation noise.
Extended reading notes
Core claim
The central claim is that the number of modes in the latent distribution controls how well diffusion models learn and generate. The paper proves a sample-complexity bound for DDPM on a K-Gaussian mixture, $n \geq \Theta(K^4 d^5 B^6 / \varepsilon^2)$, and pairs it with an empirical correlation between GMM negative log-likelihood, linear-probing accuracy, and final gFID. On that basis it claims that the variational form of autoencoders, the KL constraint of VAEs, is unnecessary; what matters is an organized, discriminative latent space. MAETok delivers that space by training a plain autoencoder with masked modeling and auxiliary target predictors, and the paper reports state-of-the-art ImageNet generation at 256 and 512 resolution with 128 latent tokens, including gFID 1.69 at 512x512 with a 675M SiT-XL.
Load-bearing premise
The load-bearing premise is that a tokenizer's latent distribution can be faithfully summarized as a mixture of a few well-separated Gaussians whose mode count K controls the diffusion model's true sample complexity; if the real, entangled latent codes do not fit that summary, the theoretical explanation for why MAETok works loses its foundation.
Editorial extensions
If this is right
- The KL loss in latent diffusion tokenizers can be dropped; a masked-trained plain AE is sufficient for state-of-the-art generation.
- Fewer, better-separated latent modes yield lower denoising loss, faster convergence, and better gFID at fixed compute.
- 128 tokens suffice for 256x256 and 512x512 ImageNet generation, converting directly into 31 times higher inference throughput and 76 times faster training relative to the compared pipeline.
- Reconstruction fidelity and latent discriminativeness decouple: after masked training, fine-tuning only the decoder recovers rFID from 0.85 to 0.48 without hurting gFID.
- On MAETok latents, unconditional and CFG-based generation are close in quality, and the paper shows that replacing CFG with autoguidance or guidance-free training pushes SiT-XL gFID from 1.67 to 1.54 and 1.51.
- vThe theory predicts a scaling law: under a fixed dataset, tokenizers with fewer latent modes should make larger diffusion models pay off faster; this can be checked by comparing SiT-XL and SiT-L on the same MAETok latent space.
- The paper's finding also implies that strong unconditional generation is a cheap diagnostic for latent structure: models on MAETok already reach IS 47.33 unconditionally, so a small CFG gap signals a well-clustered latent space rather than a weak generator.
Reading between the lines
- A testable extension: deliberately manipulating mode count without changing reconstruction fidelity, for example by adding a clustering regularizer to a standard AE, should reproduce the gFID ordering predicted by the paper's bound.
- The theory predicts a scaling law: under a fixed dataset, tokenizers with fewer latent modes should make larger diffusion models pay off faster; this can be checked by comparing SiT-XL and SiT-L on the same MAETok latent space.
- The paper's finding also implies that strong unconditional generation is a cheap diagnostic for latent structure: models on MAETok already reach IS 47.33 unconditionally, so a small CFG gap signals a well-clustered latent space rather than a weak generator.
- The GMM-mode lens suggests a broader design rule: any training objective that clusters semantically related latents, such as contrastive alignment or clustering, should raise downstream diffusion quality even without masking; MAE is one instance, not the only one.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper studies how the latent space of image tokenizers affects diffusion model training and generation. It argues, both empirically and theoretically, that latent distributions with fewer Gaussian mixture modes and more discriminative features lead to better diffusion learning and sampling. To instantiate this idea, it proposes MAETok, a plain autoencoder trained with masked modeling and auxiliary shallow decoders that predict HOG, DINOv2, CLIP, and (for the LAION variant) BPE text targets, followed by a decoder-only fine-tuning stage. Using only 128 latent tokens, diffusion models such as SiT-XL and LightningDiT trained on MAETok achieve state-of-the-art ImageNet generation (e.g., gFID 1.69 and IS 304.2 on 512x512 with CFG, outperforming a 2B-parameter USiT). The paper concludes that variational regularization is not necessary for effective latent diffusion, provided the latent space is sufficiently discriminative.
Significance. If the empirical results hold, MAETok is a practically important tokenizer: it decouples semantic richness from reconstruction fidelity, uses only 128 tokens, and greatly improves training and inference throughput. The ablations are extensive (mask ratio, reconstruction target, auxiliary decoder depth, component ablation, token count), and the latent-space analyses (linear probing accuracy, UMAP separation, GMM NLL, and convergence speed) consistently correlate with generation quality. The paper also releases code and trained models, which is a strength. The theoretical argument, however, is currently not rigorous enough to establish the causal claim that 'fewer modes cause better diffusion' for the actual system; it functions as a motivating analogy rather than a proof for the transformer denoisers used in the experiments. The empirical contribution is significant and publishable once the theory section is either repaired or explicitly reframed as idealized motivation.
major comments (3)
- [Appendix A, Eq. (18)] Equation (18) does not follow from Theorem A.5 as stated. Theorem A.5 guarantees only min_i ||mu~_i - mu*_i|| <= epsilon, i.e., that at least one estimated center is close, whereas Eq. (18) bounds a sum over all K centers and also involves the weight mismatch (w_i,t - w*_i,t), which requires simultaneous closeness of all centers. The proof sketch hides constants and an implicit K dependence; without an all-centers guarantee, the displayed O(K^4 d^5 B^6 / eps^2) sample complexity in Theorem A.7 is not established. This is load-bearing for the Section 2 claim that more modes require more training samples.
- [Section 2 / Appendix B.3] The GMM analysis does not actually measure the K appearing in Theorem 2.1. The latent codes are first flattened, PCA-reduced to 90% explained variance, and then standardized before fitting (Appendix B.3). These preprocessing steps alter cluster geometry, and the NLL-versus-component-count curves in Fig. 2a are not estimators of the number of modes of the original latent distribution. Consequently, the connection between the empirically observed 'fewer modes' for MAETok and the theoretical K in Eq. (1) is not established, and the paper's explanation of why MAETok works is supported only by correlation and analogy.
- [Appendix A, Eq. (13)] The theoretical result is proved only for a softmax-linear score network of the form s_theta_t(x) = sum_i w_i,t(x) mu_i,t - x, whose parametric form exactly matches the oracle score of the Gaussian mixture. The denoisers actually used in all experiments (SiT and LightningDiT transformers) are not of this form, and the paper gives no argument that they can approximate this score with the same sample complexity. Thus even a corrected GMM bound would not directly transfer to the systems whose performance is reported.
minor comments (7)
- [Theorem 2.1] There is a typo: 'distirbution' should be 'distribution'.
- [Appendix A, Remark A.4] 'second movement bound' should be 'second moment bound'.
- [Related Work] 'Imgae tokenization' should be 'Image tokenization'.
- [Fig. 2] The caption uses 'GMM Loss' while the text and axis label use 'GMM NLL'; please make the terminology consistent.
- [Table 12] Table 12 reports gFID and IS computed on 10K generated samples while the main tables use 50K samples; please state this clearly in the caption or use a consistent evaluation protocol to avoid the appearance of cherry-picking.
- [Section 4.5] The claim of '76x faster training to perform similarly to REPA' is imprecise; please define the baseline, compute budget, and performance threshold used for this comparison.
- [Appendix C.3] 'differente reconstruction targets' should be 'different reconstruction targets'.
Circularity Check
No significant circularity: the central method is benchmarked externally, the latent-space analyses are post-hoc measurements, and the cited theorems are prior independent results.
full rationale
The paper's derivation chain has two parts: an empirical/theoretical link between latent-space structure and diffusion performance (Section 2, Appendix A), and the MAETok method with ImageNet benchmarks (Sections 3-4). Neither part reduces to its own inputs by construction. The theoretical bound in Theorem 2.1 is assembled from external prior theorems, Theorem 16 of Shah et al. (2023) and Theorem 2.2 of Chen et al. (2023), under explicit assumptions (A.1-A.3). The paper does not fit parameters to force the K^4 scaling; the bound is quoted and combined, not derived from the authors' own unpublished claims. The empirical GMM analysis in Fig. 2a is a post-hoc measurement of learned latent codes, and Fig. 2b reports independently trained diffusion losses; the alignment is correlational evidence, not a fitted quantity renamed as a prediction. The latent-space probes (UMAP, linear probing accuracy, GMM NLL) are diagnostic evaluations of trained tokenizers, not losses used to train the tokenizer or the diffusion model, so they cannot be circular in the sense of 'input equals output by construction.' MAETok's design choices are ablated (Table 1, Table 6) against external metrics (rFID, gFID), and the main results compare SiT-XL and LightningDiT trained on MAETok against a broad set of published baselines, including DiT, SiT, REPA, MAR-H, and USiT. Self-citations appear (XQ-GAN, ImageFolder, SoftVQ), but they are used as implementation scaffolds or baseline references, not as load-bearing justifications for the central claim that variational regularization is unnecessary. There are genuine technical gaps: the score network in Eq. 13 is a softmax-linear mean estimator rather than the transformer denoiser used in experiments; Theorem A.5 guarantees only min_i ||mu_i - mu*_i|| while Eq. 18 uses a sum over all centers and weight mismatches; and the GMM mode counts are obtained after PCA and standardization, so the K in Theorem 2.1 is not exactly the empirically plotted component count. These are correctness and transfer-relevance concerns, not cases where a prediction is equivalent to its input by construction. No passage in the manuscript asserts a circular step or a missing proof that would change this assessment. Overall, the paper's central claims are supported by external benchmarks and independent measurements, and no specific reduction from a derived result back to its own fitted input or self-citation chain can be exhibited.
Assumptions & free parameters
free parameters (4)
- mask ratio range =
40-60%
- loss weights (lambda1, lambda2) =
lambda1=1.0, lambda2=0.4
- auxiliary decoder depth =
3 layers
- number of latent tokens =
128
assumptions (5)
- domain assumption Assumption A.1: Gaussian mixture components are separated by at least C sqrt(log(min(K,d))).
- domain assumption Assumption A.2: the algorithm is warm-started with each center estimate within C' sqrt(log(min(K,d))) of the true center.
- domain assumption Assumption A.3: max_i ||mu_i|| <= B, bounding the mean norm of each GMM component.
- ad hoc to paper The learned denoising network is assumed to have the softmax-linear form of Eq. (13), matching the oracle score's structure.
- ad hoc to paper Real latent spaces are treated as Gaussian mixtures with well-separated modes, so that fitted GMM mode counts correspond to the theorem's K.
Cite this review
Pith. "Pith review of Masked Autoencoders Are Effective Tokenizers for Diffusion Models." pith.science (2026). https://pith.science/paper/7RZYR5LD
@misc{pith2026250203444,
author = {Pith},
title = {Pith review of: Masked Autoencoders Are Effective Tokenizers for Diffusion Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/7RZYR5LD}},
note = {Machine review of arXiv:2502.03444}
}
read the original abstract
Recent advances in latent diffusion models have demonstrated their effectiveness for high-resolution image synthesis. However, the properties of the latent space from tokenizer for better learning and generation of diffusion models remain under-explored. Theoretically and empirically, we find that improved generation quality is closely tied to the latent distributions with better structure, such as the ones with fewer Gaussian Mixture modes and more discriminative features. Motivated by these insights, we propose MAETok, an autoencoder (AE) leveraging mask modeling to learn semantically rich latent space while maintaining reconstruction fidelity. Extensive experiments validate our analysis, demonstrating that the variational form of autoencoders is not necessary, and a discriminative latent space from AE alone enables state-of-the-art performance on ImageNet generation using only 128 tokens. MAETok achieves significant practical improvements, enabling a gFID of 1.69 with 76x faster training and 31x higher inference throughput for 512x512 generation. Our findings show that the structure of the latent space, rather than variational constraints, is crucial for effective diffusion models. Code and trained models are released.
Figures
Figures from the paper (18 more)
Forward citations
Cited by 4 Pith papers
-
Physics-Informed Distillation of Diffusion Models for PDE-Constrained Generation
Post-hoc distillation with a PDE-residual loss on final samples avoids the Jensen gap and yields one-step physics-constrained generation.
-
BrainG3N: A Dual-Purpose Tokenizer for Controllable 3D Brain MRI Generation
A volumetric MAE tokenizer decouples clinical embedding from reconstruction to support both 23-task linear probing and conditional 3D brain MRI generation via DiT.
-
DC-AR: Efficient Masked Autoregressive Image Generation with Deep Compression Hybrid Tokenizer
DC-AR generates 512x512 images in 12 masked autoregressive steps plus 20 diffusion refinement steps, using a 32x compressed 2D tokenizer, and reports gFID 5.49 on MJHQ-30K.
-
Adaptive Mask-guided K-space Diffusion for Accelerated MRI Reconstruction
AMDM reconstructs undersampled MRI by masking k-space frequency components with adaptive masks inside a diffusion model, and reports large PSNR gains over baseline methods.
Reference graph
Works this paper leans on
-
[4]
Chung, H., Kim, J., Park, G. Y ., Nam, H., and Ye, J. C. Cfg++: Manifold-constrained classifier free guidance for diffusion models. arXiv preprint arXiv:2406.08070,
-
[6]
We use a classifier-free guidance scale of 2.0
Additional selected samples from 512×512 SiT-XL model on MAETok. We use a classifier-free guidance scale of 2.0. A. Theoretical Analysis Preliminary. We begin the theoretical analysis by introducing the preliminaries of the problem and the necessary notation. Following the empirical analysis setting, we first consider the latent data distribution is the G...
work page 2023
-
[7]
Imagenet: A large-scale hierarchical image database
Deng, J., Dong, W., Socher, R., Li, L.-J., Li, K., and Fei-Fei, L. Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pp. 248–255. Ieee,
2009
-
[9]
Mdtv2: Masked diffusion transformer is a strong image synthe- sizer
Gao, S., Zhou, P., Cheng, M.-M., and Yan, S. Mdtv2: Masked diffusion transformer is a strong image synthe- sizer. arXiv preprint arXiv:2303.14389,
-
[10]
Learning mixtures of gaussians using diffusion models
Gatmiry, K., Kelner, J., and Lee, H. Learning mixtures of gaussians using diffusion models. arXiv preprint arXiv:2404.18869,
-
[11]
Rethinking the Objectives of Vector-Quantized Tokenizers for Image Synthesis
URL https: //arxiv.org/abs/2212.03185. He, K., Chen, X., Xie, S., Li, Y ., Doll´ar, P., and Girshick, R. Masked autoencoders are scalable vision learners. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp. 16000–16009,
-
[15]
Kingma, D. P. Auto-encoding variational bayes. arXiv preprint arXiv:1312.6114,
-
[16]
Applying guidance in a limited interval improves sample and distribution quality in diffusion models
Kynk¨a¨anniemi, T., Aittala, M., Karras, T., Laine, S., Aila, T., and Lehtinen, J. Applying guidance in a limited interval improves sample and distribution quality in diffusion models. arXiv preprint arXiv:2404.07724,
Show all 45 references
-
[17]
Scalable autoregressive image generation with mamba
Li, H., Yang, J., Wang, K., Qiu, X., Chou, Y ., Li, X., and Li, G. Scalable autoregressive image generation with mamba. arXiv preprint arXiv:2408.12245, 2024a. Li, T., Chang, H., Mishra, S. K., Zhang, H., Katabi, D., and Krishnan, D. Mage: Masked generative encoder to unify re...
-
[18]
Li, T., Tian, Y ., Li, H., Deng, M., and He, K
URL https://arxiv.org/abs/2211.09117. Li, T., Tian, Y ., Li, H., Deng, M., and He, K. Autoregres- sive image generation without vector quantization, 2024b. URL https://arxiv.org/abs/2406.11838. Li, X., Chen, H., Qiu, K., Kuen, J., Gu, J., Raj, B., and Lin, Z. Imagefolder: Auto...
-
[20]
Decoupled weight decay regularization.arXiv preprint arXiv:1711.05101,
Loshchilov, I. Decoupled weight decay regularization.arXiv preprint arXiv:1711.05101,
-
[22]
Umap: Uniform manifold approximation and projection for dimension reduction
McInnes, L., Healy, J., and Melville, J. Umap: Uniform manifold approximation and projection for dimension reduction. arXiv preprint arXiv:1802.03426,
-
[23]
org/abs/2102.09672
URL https://arxiv. org/abs/2102.09672. Oquab, M., Darcet, T., Moutakanni, T., V o, H. V ., Szafraniec, M., Khalidov, V ., Fernandez, P., Haziza, D., Massa, F., El-Nouby, A., Howes, R., Huang, P.-Y ., Xu, H., Sharma, V ., Li, S.-W., Galuba, W., Rabbat, M., As- sran, M., Ballas,...
-
[24]
Qiu, K., Li, X., Kuen, J., Chen, H., Xu, X., Gu, J., Luo, Y ., Raj, B., Lin, Z., and Savvides, M
URL https://arxiv.org/abs/ 2212.09748. Qiu, K., Li, X., Kuen, J., Chen, H., Xu, X., Gu, J., Luo, Y ., Raj, B., Lin, Z., and Savvides, M. Robust latent matters: Boosting image generation with sampling error synthesis. arXiv preprint arXiv:2503.08354,
-
[25]
K., Yuan, Z., and Wu, X
Qu, L., Zhang, H., Liu, Y ., Wang, X., Jiang, Y ., Gao, Y ., Ye, H., Du, D. K., Yuan, Z., and Wu, X. Tokenflow: Unified image tokenizer for multimodal understanding and generation. arXiv preprint arXiv:2412.03069,
-
[26]
Generating diverse high-fidelity images with vq-vae-2
Razavi, A., Van den Oord, A., and Vinyals, O. Generating diverse high-fidelity images with vq-vae-2. Advances in neural information processing systems, 32, 2019a. Razavi, A., van den Oord, A., and Vinyals, O. Generating diverse high-fidelity images with vq-vae-2, 2019b. URL ht...
1906 arXiv
-
[27]
Deep unsupervised learning using nonequi- librium thermodynamics
Sohl-Dickstein, J., Weiss, E., Maheswaranathan, N., and Ganguli, S. Deep unsupervised learning using nonequi- librium thermodynamics. In International conference on machine learning, pp. 2256–2265. PMLR, 2015a. Sohl-Dickstein, J., Weiss, E. A., Maheswaranathan, N., and Ganguli...
-
[28]
Sun, P., Jiang, Y ., Chen, S., Zhang, S., Peng, B., Luo, P., and Yuan, Z
URL https://arxiv.org/ abs/2010.02502. Sun, P., Jiang, Y ., Chen, S., Zhang, S., Peng, B., Luo, P., and Yuan, Z. Autoregressive model beats diffusion: Llama for scalable image generation. arXiv preprint arXiv:2406.06525,
2010 arXiv
-
[29]
org/abs/2404.02905
URL https://arxiv. org/abs/2404.02905. Tschannen, M., Eastwood, C., and Mentzer, F. Givt: Gen- erative infinite-vocabulary transformers. In European Conference on Computer Vision, pp. 292–309. Springer,
-
[30]
Vahdat, A., Kreis, K., and Kautz, J
URL https://arxiv.org/abs/ 2104.03310. Vahdat, A., Kreis, K., and Kautz, J. Score-based generative modeling in latent space,
-
[31]
org/abs/2106.05931
URLhttps://arxiv. org/abs/2106.05931. 12 Masked Autoencoders Are Effective Tokenizers for Diffusion Models Van den Oord, A., Kalchbrenner, N., Espeholt, L., Vinyals, O., Graves, A., et al. Conditional image generation with pixelcnn decoders. Advances in neural information pro-...
-
[32]
Vincent, P., Larochelle, H., Bengio, Y ., and Manzagol, P.-A
URL https://arxiv.org/ abs/1706.03762. Vincent, P., Larochelle, H., Bengio, Y ., and Manzagol, P.-A. Extracting and composing robust features with denoising autoencoders. In Proceedings of the 25th international conference on Machine learning, pp. 1096–1103,
-
[34]
Vila-u: a unified foundation model integrating visual understanding and generation
Wu, Y ., Zhang, Z., Chen, J., Tang, H., Li, D., Fang, Y ., Zhu, L., Xie, E., Yin, H., Yi, L., et al. Vila-u: a unified foundation model integrating visual understanding and generation. arXiv preprint arXiv:2409.04429,
-
[35]
and Wang, X
Yao, J. and Wang, X. Reconstruction vs. generation: Taming optimization dilemma in latent diffusion models. arXiv preprint arXiv:2501.01423,
-
[36]
Y ., Zhang, H., Pang, R., Qin, J., Ku, A., Xu, Y ., Baldridge, J., and Wu, Y
Yu, J., Li, X., Koh, J. Y ., Zhang, H., Pang, R., Qin, J., Ku, A., Xu, Y ., Baldridge, J., and Wu, Y . Vector-quantized image modeling with improved vqgan. arXiv preprint arXiv:2110.04627,
-
[37]
B., Versari, L., Sohn, K., Minnen, D., Cheng, Y ., Gupta, A., Gu, X., Haupt- mann, A
Yu, L., Lezama, J., Gundavarapu, N. B., Versari, L., Sohn, K., Minnen, D., Cheng, Y ., Gupta, A., Gu, X., Haupt- mann, A. G., Gong, B., Yang, M.-H., Essa, I., Ross, D. A., and Jiang, L. Language model beats diffusion - tokenizer is key to visual generation. In The Twelfth Inte...
-
[38]
URLhttps://arxiv.org/ abs/1801.03924. Zhao, X. and Schwing, A. G. Studying classifier (-free) guid- ance from a classifier-centric perspective. arXiv preprint arXiv:2503.10638,
-
[39]
Scaling the codebook size of vqgan to 100,000 with a utilization rate of 99%
Zhu, L., Wei, F., Lu, Y ., and Chen, D. Scaling the codebook size of vqgan to 100,000 with a utilization rate of 99%. arXiv preprint arXiv:2406.11837,
-
[41]
We use a classifier-free guidance scale of 2.0
Additional selected samples from 256×256 diffusion models on MAETok. We use a classifier-free guidance scale of 2.0. Assumptions. To ensure the denoising network approximates the score function with sufficient accuracy, we consider the following three common assumptions, which...
2022
-
[42]
The maximum mean norm of the GMM in GMM 9 is bounded as: maxi ∥µi∥ ≤B
Assumption A.3. The maximum mean norm of the GMM in GMM 9 is bounded as: maxi ∥µi∥ ≤B. Remark A.4. By Assumption A.3, we could derive the second movement bound of p0 as Ex∼p0 [∥x∥2] = Z p0(x)∥x∥2dx ≤ d + B2 (17) Then, we can have the following analysis, Step 1: From K Modes to...
2023
-
[43]
In the practical sampling process, we adopt an early stopping strategy to improve the generation quality
Therefore, consider a step size hk ≤ γ, we can have the learned score function sθt (x) satisfies 1 T NX k=1 hkE[∥sθtk (xtk ) − ∇xtk log pt(xtk )∥2] ≲ N γ T (ϵ2 + B2) (19) Step 2: From Training Loss to Samlping Error. In the practical sampling process, we adopt an early stoppin...
2023
-
[44]
Training Details of Diffusion Models We present the training details of SiT-XL and LightningDiT in Tables 8 and 9, which mainly follows their original setup
B.2. Training Details of Diffusion Models We present the training details of SiT-XL and LightningDiT in Tables 8 and 9, which mainly follows their original setup. B.3. Training Details of GMM Models In Fig. 2, we train our own AE, KL-V AE, and MAETok under exactly the same set...
2025
-
[45]
However, it is still extremely difficult to tune the guidance scale
to cutout the high timesteps with CFG can mitigate this issue. However, it is still extremely difficult to tune the guidance scale. We use a guidance scale of 1.9 and an interval of [0, 0.75] for 256×256 SiT-XL and a guidance scale of 1.8 and an interval of [0, 0.75] for 256×2...
2024
-
[2005]
Causal diffusion transformers for generative modeling
Deng, C., Zh, D., Li, K., Guan, S., and Fan, H. Causal diffusion transformers for generative modeling. arXiv preprint arXiv:2412.12095,
-
[2006]
and Salimans, T
Ho, J. and Salimans, T. Classifier-free diffusion guidance. arXiv preprint arXiv:2207.12598,
-
[2008]
Maskbit: Embedding-free image gen- eration via bit tokens
Weber, M., Yu, L., Yu, Q., Deng, X., Shen, X., Cremers, D., and Chen, L.-C. Maskbit: Embedding-free image gen- eration via bit tokens. arXiv preprint arXiv:2409.16211,
-
[2014]
Customize your visual autoregressive recipe with set au- toregressive modeling
Liu, W., Zhuo, L., Xin, Y ., Xia, S., Gao, P., and Yue, X. Customize your visual autoregressive recipe with set au- toregressive modeling. arXiv preprint arXiv:2410.10511,
-
[2017]
S., Boffi, N
11 Masked Autoencoders Are Effective Tokenizers for Diffusion Models Ma, N., Goldstein, M., Albergo, M. S., Boffi, N. M., Vanden- Eijnden, E., and Xie, S. Sit: Exploring flow and diffusion- based generative models with scalable interpolant trans- formers. arXiv preprint arXiv:...
-
[2018]
Johnson, J., Alahi, A., and Fei-Fei, L
URL https://arxiv.org/abs/ 1611.07004. Johnson, J., Alahi, A., and Fei-Fei, L. Perceptual losses for real-time style transfer and super-resolution. In Com- puter Vision–ECCV 2016: 14th European Conference, Amsterdam, The Netherlands, October 11-14, 2016, Pro- ceedings, Part II...
2016 arXiv
-
[2019]
Guiding a diffusion model with a bad version of itself
Karras, T., Aittala, M., Kynk¨a¨anniemi, T., Lehtinen, J., Aila, T., and Laine, S. Guiding a diffusion model with a bad version of itself. arXiv preprint arXiv:2406.02507,
-
[2021]
Esser, P., Rombach, R., and Ommer, B
URL https: //arxiv.org/abs/2010.11929. Esser, P., Rombach, R., and Ommer, B. Taming transformers for high-resolution image synthesis. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp. 12873–12883,
2010 arXiv
-
[2022]
Chen, H., Lee, H., and Lu, J
URL https://arxiv.org/abs/2202.04200. Chen, H., Lee, H., and Lu, J. Improved analysis of score- based generative modeling: User-friendly bounds under minimal smoothness assumptions. In International Con- ference on Machine Learning , pp. 4735–4763. PMLR,
-
[2023]
Softvq- vae: Efficient 1-dimensional continuous tokenizer
Chen, H., Wang, Z., Li, X., Sun, X., Chen, F., Liu, J., Wang, J., Raj, B., Liu, Z., and Barsoum, E. Softvq- vae: Efficient 1-dimensional continuous tokenizer. arXiv preprint arXiv:2412.10958, 2024a. Chen, H., Jiang, K., Zheng, K., Chen, J., Su, H., and Zhu, J. Visual generatio...
-
[2024]
and Triggs, B
Dalal, N. and Triggs, B. Histograms of oriented gradients for human detection. In 2005 IEEE computer society conference on computer vision and pattern recognition (CVPR’05), volume 1, pp. 886–893. Ieee,
2005
-
[2025]
Deep compression autoen- coder for efficient high-resolution diffusion models.arXiv preprint arXiv:2410.10733, 2024b
Chen, J., Cai, H., Chen, J., Xie, E., Yang, S., Tang, H., Li, M., Lu, Y ., and Han, S. Deep compression autoen- coder for efficient high-resolution diffusion models.arXiv preprint arXiv:2410.10733, 2024b. Chen, S., Chewi, S., Li, J., Li, Y ., Salim, A., and Zhang, A. R. Sampli...
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.