Pith. sign in

REVIEW 4 major objections 5 minor 137 references

High-Resolution Image Synthesis via Next-Token Prediction

T0 review · 4 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash

Pith's one-line read An autoregressive next-token-prediction model using continuous tokens, flow matching, and a resolution-normalizing positional embedding matches diffusion models on text-to-image benchmarks and generates images up to 4K.

desk verdict A strong AR text-to-image system with real benchmark numbers, but the 'first SOTA' and 4K claims outrun the evidence. read the letter →

arxiv 2411.14808 v2 pith:TYB2U2RT submitted 2024-11-22 cs.CV cs.AIcs.LG

classification cs.CVcs.AIcs.LG
keywords autoregressiveimagegenerationnext-tokenpredictioncontinuoustokensflowmatchingvisualrotarypositionalembeddinghigh-resolutiontext-to-imagedatafeedbacktraining
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper tries to establish that next-token prediction—the same principle behind modern language models—can produce high-quality, high-resolution images from text, not just class-conditional thumbnails. The authors build a 2.6-billion-parameter autoregressive model, D-JEPA·T2I, that predicts continuous visual tokens with a flow-matching loss and a new positional embedding, and they train it with a data-feedback scheme that steers sampling toward cases the model handles poorly. On GenEval the model scores 0.66, above diffusion models of comparable size and near much larger closed models, and it generates images at arbitrary resolutions and aspect ratios, up to 4K. If the claim holds, autoregressive models become a serious alternative to diffusion as the backbone for text-to-image systems, with the same architecture potentially extending to video and unified multimodal models.

What carries the argument

The load-bearing piece is VoPE (visual rotary positional embedding), a positional encoding that maps any pixel coordinate (w,h) into a normalized g×g reference grid using a resolution density ρ and a centering offset b, so the attention dot product depends only on the relative normalized distance (m−n)/ρ. That makes positional information invariant to image scale and aspect ratio, unlike RoPE, which needs base-frequency retuning and causes blurry repetitive outputs when extrapolated. Around it, the model uses the D-JEPA architecture to predict masked continuous tokens, a flow-matching loss to denoise each predicted token, and a data-feedback training loop in which a small critic model labels whether the current generator handles a sampled example well and reweights future sampling toward cases it fails.

What would settle it

Generate a batch of 2048×2048 and 4096×4096 images from the trained model and measure a global-coherence metric such as FID against a reference set or human pairwise preference against 1K outputs from the same model; if scores degrade sharply with resolution, or if human raters prefer lower-resolution versions, the claimed arbitrary-resolution capability does not transfer and the central high-resolution claim fails.

Watch

Extended reading notes

Core claim

The central claim is that D-JEPA·T2I is, for the first time, a next-token-prediction model that achieves state-of-the-art high-resolution text-to-image synthesis. Using continuous tokens encoded by a KL-VAE, a multimodal visual transformer that fuses T5 text features with visual features, and a flow-matching objective in place of a diffusion loss, the model reaches 0.66 overall on GenEval, surpassing same-scale diffusion baselines such as SDXL and SD3.0-2B and rivaling DALL·E 3 and Fluid at larger scales. It also improves over autoregressive predecessors like LlamaGen and Emu3, and human pairwise ratings put it close to Midjourney v6. The paper attributes the resolution flexibility to VoPE, which normalizes pixel coordinates into a fixed grid so that relative positions stay consistent across resolutions, and to a random token-drop training strategy that caps each iteration at 4096 tokens, allowing 4K-scale synthesis without 4K-scale memory.

Load-bearing premise

The high-resolution claim rests on the assumption that training with at most 4096 randomly dropped tokens and VoPE's normalized coordinates transfers to full 4K sampling while keeping the image globally coherent, an assumption the paper supports only with sample images, not quantitative measurements.

Editorial extensions

If this is right

  • Autoregressive text-to-image can rival diffusion at similar parameter counts: 0.66 GenEval for 2.6B parameters versus 0.55 for SDXL and 0.62 for SD3.0-2B, and ahead of open autoregressive baselines of up to 8B.
  • One model covers continuous resolutions and aspect ratios without per-size fine-tuning; sampling uses at most 128 autoregressive steps regardless of resolution.
  • Data feedback roughly halves early training time to reach a given GenEval score and raises the human win rate against Midjourney v6 from 17.3% to 35.6% in the late training stage.
  • Adjusting the positional offset b gives explicit layout control, letting the model shift off-center subjects back into view.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Editorial inference: if VoPE transfers as claimed, the same normalized-coordinate trick could let a single autoregressive or diffusion transformer train at low resolution and sample at arbitrary high resolutions in other modalities, such as video, where absolute positional embeddings currently force interpolation.
  • Editorial inference: the paper's 4K results are qualitative only; a quantitative 4K evaluation (FID or human ratings on 2048×2048 and 4096×4096 outputs) would test whether the token-drop training preserves global coherence, since the model never sees a full high-resolution image during training.
  • Editorial inference: the critic-model feedback loop is a cheap online substitute for preference fine-tuning, but it assumes the critic's labels remain aligned with actual model weaknesses as training progresses; periodic re-labeling with human judgments is what keeps that assumption valid here.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The paper presents D-JEPA·T2I, a 2.6B-parameter autoregressive text-to-image model based on continuous tokens, the D-JEPA architecture, flow-matching loss, and a new visual rotary positional embedding (VoPE) for continuous-resolution learning. A data-feedback training strategy uses statistical analysis sampling plus an online critic model to re-weight training data toward underperforming cases. The model is trained on an internal 1B+ image-text dataset and evaluated on GenEval, T2I-CompBench++, and GenAI-Bench, with a human-study win rate against Midjourney v6. The central claim is that this is the first state-of-the-art high-resolution (up to 4K) image synthesis via next-token prediction.

Significance. If the central claims hold, the paper would be a meaningful step for autoregressive text-to-image generation: it demonstrates that a relatively small (2.6B) continuous-token NTP model can match or exceed several diffusion baselines on standard alignment benchmarks, and the VoPE mechanism is a plausible solution for variable-resolution and variable-aspect-ratio generation. The data-feedback training strategy is also a useful and fairly resource-efficient idea, and the paper includes ablations (Table 4) that support its contribution. The paper is less strong on the 4K and 'first SOTA' claims: the 4K evidence is qualitative only, and the GenEval comparison in Table 3 shows Fluid (10.5B) at 0.69 vs. 0.66 here, which puts the 'state-of-the-art via next-token prediction' phrasing under an unstated scope restriction.

major comments (4)
  1. [Abstract and §4.4 (Fig. 6)] The abstract and Section 4.4 state that D-JEPA·T2I 'performs comparably to Midjourney v6', but Fig. 6 reports a win rate of 39.37% against Midjourney v6, below the 50% baseline. A 39% win rate is not 'comparable' in the usual sense; the text should be revised to report the actual value and to qualify the comparison, e.g., as 'competitive among open models of similar size' rather than 'comparable to Midjourney v6'.
  2. [§9 (Scaling to 4K Resolution) and §14 (Limitation)] The headline claim of 'high-resolution image synthesis, up to 4K' rests on Fig. 11 and the random token-drop training strategy, but no quantitative evaluation at resolutions above 1K is provided. The paper's own §9 states that random token-drop 'might limit the model's ability to learn global features', and §14 admits that 4K performance is 'less than optimal'. Since the paper provides no FID, VQAScore, GenEval, or human evaluation at 2K/4K, and no comparison against any baseline at those resolutions, the 4K-capability claim is unverified. Please add quantitative results at 2K and 4K, or explicitly scope the claim to 1K in the abstract and title.
  3. [Table 2 and Table 3 (GenEval comparison)] The claim of 'state-of-the-art high-resolution image synthesis via next-token prediction' is not directly supported by the GenEval numbers in Table 3: Fluid, an NTP model, achieves 0.69, which is higher than the reported 0.66. The phrase 'state-of-the-art' is therefore only valid under an unstated scope restriction (e.g., models under 3B parameters, or open-source models without DPO). Please either add the scope restriction explicitly, or soften the claim to match the data (e.g., 'state-of-the-art among sub-3B NTP models').
  4. [§3.2 (Critic Model Sampling) and Table 4] The critic model is trained on labels derived from T2I-CompBench and GenEval-style automated metrics, and the same benchmarks are used for final evaluation. This creates a potential feedback loop where the model is explicitly optimized toward those benchmarks. The paper should discuss this circularity risk and, ideally, report results on a held-out benchmark that was not used for critic training (e.g., a human-preference benchmark like PickScore or a different compositional benchmark). Table 4's ablation is useful, but the reported GenEval gains may partly reflect overfitting to the evaluation metric rather than general improvement.
minor comments (5)
  1. [§2.3, Eq. (3)] The VoPE derivation in §2.3 would benefit from a note that the normalization with ρ and b assumes max(W,H) is known at inference time; for arbitrary user-specified resolutions this is fine, but the exact handling of non-integer ρ and b is not specified.
  2. [§9 (Inference Details)] The paper reports that the time-shifting factor was determined by grid search to be 4.5, but does not report the search range or sensitivity; a brief sensitivity analysis would improve reproducibility.
  3. [Table 1, GenAI-Bench 'basic' prompts] The 'Avg' column in Table 1 appears to be computed over the five categories, but the 'basic' and 'advanced' tables have different category sets; please clarify whether the average is unweighted over the displayed categories.
  4. [§4.1 (Training)] The description of the second training phase says resolutions 'progressively increase from 128 to 1024 pixels', but §9 and Fig. 10 describe a dynamic resolution distribution that also samples beyond 1K. Please reconcile these two descriptions.
  5. [References] Reference [41] (Lumina-T2X) is cited for the flow matching formulation, but the paper uses a slightly different interpolation schedule (t x_i + (1-t) epsilon); please cite the original flow matching papers (e.g., Lipman et al. and Liu et al.) directly for this specific form.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the central benchmark results are measured directly against external baselines; the D-JEPA self-citation is architectural inheritance rather than a load-bearing derivation, and the critic/benchmark feedback loop does not force any reported number by construction.

full rationale

The paper's central claimed contribution is an empirical T2I model, and its headline numbers (GenEval 0.66, T2I-CompBench++, GenAI-Bench, human win rates) are computed by running the trained model on public benchmarks and comparing to external systems; none of those numbers is an identity or a fitted quantity renamed as a prediction. The same-author citation to D-JEPA [20] supplies the backbone architecture and the Lpred/Lflow masking recipe, but the present model's performance is not inferred from that citation; it is measured in this paper's own experiments (e.g., Table 2, Table 4, Fig. 6). The critic model is trained on labels derived from T2I-CompBench and then used to reweight training data, and the same benchmark family appears in the final evaluation table; this is a legitimate benchmark-alignment risk, but it is not circular in the by-construction sense because the critic is a binary filter over a few thousand prompts and the reported metrics are aggregate scores on benchmark suites, so the improvement is not logically forced. VoPE's resolution invariance is obtained by defining normalized coordinates (1/rho)(m-n), which is a designed reparameterization of RoPE rather than a hidden reuse of the result it is supposed to explain; the claim that 1K training suffices for 4K generation is an empirical assertion ("we found that through dynamic resolution training... D-JEPA·T2I can quickly adapt"), not a mathematical consequence. The paper itself flags the relevant limitations: Section 9 concedes random token-drop "might limit the model's ability to learn global features," and Section 14 states 4K performance is "less than optimal"; no quantitative evaluation above 1K is provided, and Table 3 shows Fluid (a next-token-prediction model) at GenEval 0.69 versus 0.66 here, so the "first/SOTA" phrasing is under-scoped. These are evidence gaps and correctness risks, not circular derivations; the derivation chain is self-contained against external benchmarks, so the circularity score is 0.

Assumptions & free parameters 4 free parameters · 4 assumptions · 0 invented entities

The central empirical claims rest on the chosen architecture (D-JEPA, KL-VAE, flow matching) and on the data-feedback assumption that a critic can identify hard samples. No new physical entities are introduced.

free parameters (4)
  • Classifier-free guidance scale = 6.0 for benchmark evaluation, 2.0 otherwise
    Tuned per benchmark; higher CFG improves GenEval but hurts aesthetics, so the authors choose different values for different experiments (Sec. 9).
  • Time shifting factor = 4.5
    Determined via grid search to allocate denoising steps (Sec. 9).
  • Truncated normal resolution sampling parameters = trunc_norm(0.512, 0.12, 0.256, 1.024) and trunc_norm(1.024, 1.0, 0.256, 4.096)
    Define the dynamic resolution distribution in phase two; these numbers shape the model's multi-resolution training and hence its high-res behavior (Fig. 10).
  • Number of sampling AR steps = 64 for 256x256, 128 for higher
    Empirically set; more steps cost inference time, fewer steps may degrade quality (Sec. 2.4).
assumptions (4)
  • domain assumption D-JEPA architecture and its training objective are effective for class-conditional generation, and this extends to text-to-image.
    The paper adopts D-JEPA [20] as the backbone and builds on its success; if D-JEPA's gains do not transfer to the T2I setting, the architecture's benefit is unproven (Sec. 2).
  • domain assumption The KL-VAE from Esser et al. provides a good continuous latent space for images.
    Uses the KL-VAE pretrained by Esser et al. as the image encoder without fine-tuning; the quality of reconstruction bounds the achievable image quality (Sec. 2.1).
  • standard math Flow matching loss with a linear interpolation is an appropriate replacement for diffusion loss in token prediction.
    The conditional flow matching objective is standard; its use here follows Gao et al. [41] and Chen et al. [20].
  • ad hoc to paper The critic model's rejection probability identifies samples the T2I model will struggle on.
    This is the core assumption of the data-feedback mechanism: a binary classifier trained on synthetic images labeled by benchmarks or humans is assumed to predict which real training samples are most valuable (Sec. 3.2).

how reviews work

0 comments
Cite this review

Pith. "Pith review of High-Resolution Image Synthesis via Next-Token Prediction." pith.science (2026). https://pith.science/paper/TYB2U2RT

@misc{pith2026241114808,
  author       = {Pith},
  title        = {Pith review of: High-Resolution Image Synthesis via Next-Token Prediction},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/TYB2U2RT}},
  note         = {Machine review of arXiv:2411.14808}
}
abstract

Recently, autoregressive models have demonstrated remarkable performance in class-conditional image generation. However, the application of next-token prediction to high-resolution text-to-image generation remains largely unexplored. In this paper, we introduce \textbf{D-JEPA$\cdot$T2I}, an autoregressive model based on continuous tokens that incorporates innovations in both architecture and training strategy to generate high-quality, photorealistic images at arbitrary resolutions, up to 4K. Architecturally, we adopt the denoising joint embedding predictive architecture (D-JEPA) while leveraging a multimodal visual transformer to effectively integrate textual and visual features. Additionally, we introduce flow matching loss alongside the proposed Visual Rotary Positional Embedding (VoPE) to enable continuous resolution learning. In terms of training strategy, we propose a data feedback mechanism that dynamically adjusts the sampling procedure based on statistical analysis and an online learning critic model. This encourages the model to move beyond its comfort zone, reducing redundant training on well-mastered scenarios and compelling it to address more challenging cases with suboptimal generation quality. For the first time, we achieve state-of-the-art high-resolution image synthesis via next-token prediction.

Figures

Figures reproduced from arXiv: 2411.14808 by the authors.

Figure 1
Figure 1. D-JEPA·T2I can accurately generate high-fidelity, high-resolution images across various aspect ratios. Refer to the supplementary materials for 4K resolution samples and additional qualitative results. larly in large-scale datasets. Fine-tuning techniques, such as reinforcement learning from human feedback (RLHF) [66, 126] and direct preference optimization (DPO) [87, 121], offer post-hoc adjustments but exhibit inc… view at source ↗
Figure 3
Figure 3. Comparison of decay curves between RoPE and VoPE. [PITH_FULL_IMAGE:figures/full_fig_p003_3.png] view at source ↗
Figure 2
Figure 2. Denoising with a Joint-Embedding Predictive Architec [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figures from the paper (18 more)
Figure 4
Figure 4. Figure 4: Training procedure incorporating data feedback. The evaluation result will be used to train the critic model. [PITH_FULL_IMAGE:figures/full_fig_p004_4.png]
Figure 5
Figure 5. Figure 5: The pipeline to prepare training set for critic model. [PITH_FULL_IMAGE:figures/full_fig_p006_5.png]
Figure 6
Figure 6. Figure 6: Models’ win rate against Midjourney v6 [ [PITH_FULL_IMAGE:figures/full_fig_p007_6.png]
Figure 7
Figure 7. Figure 7: 1K-resolution images sampled from D-JEPA [PITH_FULL_IMAGE:figures/full_fig_p011_7.png]
Figure 8
Figure 8. Figure 8: The resolution and notion distribution in the curated LAION dataset [ [PITH_FULL_IMAGE:figures/full_fig_p011_8.png]
Figure 9
Figure 9. Figure 9: Denoising with a Joint-Embedding Predictive Architecture for text-to-image synthesis. We present the overview of D-JEPA [PITH_FULL_IMAGE:figures/full_fig_p012_9.png]
Figure 10
Figure 10. Figure 10: Dynamic resolution distribution during phase [PITH_FULL_IMAGE:figures/full_fig_p014_10.png]
Figure 11
Figure 11. Figure 11: Ultra-high-resolution images generated by D-JEPA [PITH_FULL_IMAGE:figures/full_fig_p015_11.png]
Figure 12
Figure 12. Figure 12: Common failure cases in image generation (without [PITH_FULL_IMAGE:figures/full_fig_p017_12.png]
Figure 13
Figure 13. Figure 13: D-JEPA·T2I can generate arbitrary aspect ratios and continuous resolutions with VoPE. Prompt: “A gorgeous mountain land￾scape at sunset. Masterful painting by Rembrandt.” white photograph. • A collection of fabric swatches in various colors and pat￾terns, including sh…
Figure 14
Figure 14. Figure 14: D-JEPA·T2I can generate arbitrary aspect ratios and continuous resolutions with VoPE. Prompt: “A serene mountain landscape in the style of a Chinese ink painting, with a waterfall cascading down into a crystal-clear lake surrounded by ancient pines.” • A close-up of a…
Figure 15
Figure 15. Figure 15: D-JEPA·T2I can generate arbitrary aspect ratios and continuous resolutions with VoPE. Prompt: “A still life of a vase overflow￾ing with vibrant flowers, painted in bold colors and textured brushstrokes, reminiscent of van Gogh’s iconic style.” • Single tree with vibra…
Figure 16
Figure 16. Figure 16: D-JEPA·T2I can generate arbitrary aspect ratios and continuous resolutions with VoPE. Prompt: “A window with raindrops trickling down, overlooking a blurry city.” normalizing flows with stochastic interpolants, 2022. 1 [3] Michael S Albergo, Nicholas M Boffi, and Eric…
Figure 17
Figure 17. Figure 17: Layout control by relative positional offset [PITH_FULL_IMAGE:figures/full_fig_p022_17.png]
Figure 18
Figure 18. Figure 18: Visual comparison among commercial models, [PITH_FULL_IMAGE:figures/full_fig_p023_18.png]
Figure 21
Figure 21. Figure 21: Visual comparison between PixelArt-α [21] and D-JEPA·T2I. ings of the IEEE conference on computer vision and pattern recognition, pages 770–778, 2016. 6 [45] Kaiming He, Xinlei Chen, Saining Xie, Yanghao Li, Piotr Dollar, and Ross Girshick. Masked autoencoders are sca…
Figure 22
Figure 22. Figure 22: Visual comparison between HunyunDit [65] and D-JEPA·T2I. Ruiqi Gao, Alexey Gritsenko, Diederik P. Kingma, Ben Poole, Mohammad Norouzi, David J. Fleet, and Tim Sali￾mans. Imagen video: High definition video generation with diffusion models, 2022. 1 [51] Jonathan Ho, Ch…
Figure 23
Figure 23. Figure 23: Visual comparison between Transfusion [136] and D-JEPA·T2I. Elucidating the design space of diffusion-based generative models. In Advances in neural information processing sys￾tems, pages 26565–26577, 2022. 1 [56] Jacob Devlin Ming-Wei Chang Kenton and Lee Kristina To…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

137 extracted references · 21 canonical work pages

  1. [1]

    Gpt-4 technical report

    Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774, 2023. 1, 3

  2. [2]

    A window with raindrops trickling down, overlooking a blurry city

    Michael S. Albergo and Eric Vanden-Eijnden. Building 11 Figure 16. D-JEPA ·T2I can generate arbitrary aspect ratios and continuous resolutions with V oPE. Prompt: “A window with raindrops trickling down, overlooking a blurry city.” normalizing flows with stochastic interpolants, 2022. 1

  3. [3]

    Stochastic interpolants: A unifying framework for flows and diffusions

    Michael S Albergo, Nicholas M Boffi, and Eric Vanden- Eijnden. Stochastic interpolants: A unifying framework for flows and diffusions. arXiv preprint arXiv:2303.08797,

  4. [4]

    Palm 2 technical report

    Rohan Anil, Andrew M Dai, Orhan Firat, Melvin John- son, Dmitry Lepikhin, Alexandre Passos, Siamak Shakeri, Emanuel Taropa, Paige Bailey, Zhifeng Chen, et al. Palm 2 technical report. arXiv preprint arXiv:2305.10403, 2023. 1

  5. [5]

    Qwen technical report

    Jinze Bai, Shuai Bai, Yunfei Chu, Zeyu Cui, Kai Dang, Xiaodong Deng, Yang Fan, Wenbin Ge, Yu Han, Fei Huang, et al. Qwen technical report. arXiv preprint arXiv:2309.16609, 2023. 1

  6. [6]

    Layout control by relative positional offset b

    Yogesh Balaji, Seungjun Nah, Xun Huang, Arash Vahdat, Jiaming Song, Qinsheng Zhang, Karsten Kreis, Miika Ait- tala, Timo Aila, Samuli Laine, Bryan Catanzaro, Tero Kar- 12 𝑏=384 𝑏=320 𝑏=256 Figure 17. Layout control by relative positional offset b. By ad- justing b, we can generate more desirable layouts for selection. ras, and Ming-Yu Liu. ediff-i: Text-t...

  7. [7]

    Analytic- dpm: an analytic estimate of the optimal reverse vari- ance in diffusion probabilistic models

    Fan Bao, Chongxuan Li, Jun Zhu, and Bo Zhang. Analytic- dpm: an analytic estimate of the optimal reverse vari- ance in diffusion probabilistic models. arXiv preprint arXiv:2201.06503, 2022. 1

  8. [8]

    All are worth words: A vit backbone for diffusion models

    Fan Bao, Shen Nie, Kaiwen Xue, Yue Cao, Chongxuan Li, Hang Su, and Jun Zhu. All are worth words: A vit backbone for diffusion models. In Proceedings of the IEEE/CVF con- ference on computer vision and pattern recognition , pages 22669–22679, 2023. 1

Show all 137 references
  1. [9]

    Vidu: a highly consistent, dynamic and skilled text-to-video generator with diffusion models

    Fan Bao, Chendong Xiang, Gang Yue, Guande He, Hongzhou Zhu, Kaiwen Zheng, Min Zhao, Shilong Liu, Yaole Wang, and Jun Zhu. Vidu: a highly consistent, dynamic and skilled text-to-video generator with diffusion models. arXiv preprint arXiv:2405.04233, 2024. 1

  2. [10]

    Beit: Bert pre-training of image transformers

    Hangbo Bao, Li Dong, Songhao Piao, and Furu Wei. Beit: Bert pre-training of image transformers. arXiv preprint arXiv:2106.08254, 2021. 1

  3. [11]

    Lumiere: A space- time diffusion model for video generation

    Omer Bar-Tal, Hila Chefer, Omer Tov, Charles Her- rmann, Roni Paiss, Shiran Zada, Ariel Ephrat, Junhwa Hur, Yuanzhen Li, Tomer Michaeli, et al. Lumiere: A space- time diffusion model for video generation. arXiv preprint arXiv:2401.12945, 2024. 1

  4. [12]

    Improving image generation with better captions

    James Betker, Gabriel Goh, Li Jing, Tim Brooks, Jianfeng Wang, Linjie Li, Long Ouyang, Juntang Zhuang, Joyce Lee, Yufei Guo, et al. Improving image generation with better captions. Computer Science. https://cdn. openai. com/papers/dall-e-3. pdf, 2(3), 2023. 1, 7, 8, 4, 14

  5. [13]

    Stable video diffusion: Scaling latent video diffusion models to large datasets

    Andreas Blattmann, Tim Dockhorn, Sumith Kulal, Daniel Mendelevitch, Maciej Kilian, Dominik Lorenz, Yam Levi, Zion English, Vikram V oleti, Adam Letts, et al. Stable video diffusion: Scaling latent video diffusion models to large datasets. arXiv preprint arXiv:2311.15127, 2023

  6. [14]

    Align your latents: High-resolution video synthe- sis with latent diffusion models

    Andreas Blattmann, Robin Rombach, Huan Ling, Tim Dockhorn, Seung Wook Kim, Sanja Fidler, and Karsten Kreis. Align your latents: High-resolution video synthe- sis with latent diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition,...

  7. [15]

    Brooks, B

    T. Brooks, B. Peebles, C. Holmes, W. DePue, Y . Guo, L. Jing, D. Schnurr, J. Taylor, T. Luhman, E. Luhman, C. Ng, R. Wang, and A. Ramesh. Video generation models as world simulators. OpenAI, 2024. 1

  8. [16]

    Language models are few-shot learners

    Tom B Brown. Language models are few-shot learners. arXiv preprint arXiv:2005.14165, 2020. 1

  9. [17]

    Maskgit: Masked generative image transformer

    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, pages 11315– 11325, 2022. 4, 1

  10. [18]

    Muse: Text- to-image generation via masked generative transformers

    Huiwen Chang, Han Zhang, Jarred Barber, AJ Maschinot, Jose Lezama, Lu Jiang, Ming-Hsuan Yang, Kevin Murphy, William T Freeman, Michael Rubinstein, et al. Muse: Text- to-image generation via masked generative transformers. arXiv preprint arXiv:2301.00704, 2023. 1

  11. [19]

    Bfloat16: The secret to high performance on cloud tpus, 2019

    Dehao Chen, Chiachen Chou, Yuanzhong Xu, and Jonathan Hseu. Bfloat16: The secret to high performance on cloud tpus, 2019. 2

  12. [20]

    Denoising with a joint-embedding predictive architecture

    Dengsheng Chen, Jie Hu, Xiaoming Wei, and Enhua Wu. Denoising with a joint-embedding predictive architecture. arXiv preprint arXiv:2410.03755, 2024. 1, 2, 3, 5, 7

  13. [21]

    Pixart- α: Fast training of diffu- sion transformer for photorealistic text-to-image synthesis

    Junsong Chen, Jincheng Yu, Chongjian Ge, Lewei Yao, Enze Xie, Yue Wu, Zhongdao Wang, James Kwok, Ping Luo, Huchuan Lu, et al. Pixart- α: Fast training of diffu- sion transformer for photorealistic text-to-image synthesis. arXiv preprint arXiv:2310.00426, 2023. 7, 8, 1, 4, 17

  14. [22]

    Pixart- σ: Weak-to-strong training of diffusion transformer for 4k text-to-image generation

    Junsong Chen, Chongjian Ge, Enze Xie, Yue Wu, Lewei Yao, Xiaozhe Ren, Zhongdao Wang, Ping Luo, Huchuan Lu, and Zhenguo Li. Pixart- σ: Weak-to-strong training of diffusion transformer for 4k text-to-image generation. arXiv preprint arXiv:2403.04692, 2024. 1, 7

  15. [23]

    Neural ordinary differential equa- tions

    Ricky TQ Chen, Yulia Rubanova, Jesse Bettencourt, and David K Duvenaud. Neural ordinary differential equa- tions. Advances in neural information processing systems, 31, 2018. 1

  16. [24]

    Internvl: Scaling up vision foundation mod- els and aligning for generic visual-linguistic tasks

    Zhe Chen, Jiannan Wu, Wenhai Wang, Weijie Su, Guo Chen, Sen Xing, Muyan Zhong, Qinglong Zhang, Xizhou Zhu, Lewei Lu, Bin Li, Ping Luo, Tong Lu, Yu Qiao, and Jifeng Dai. Internvl: Scaling up vision foundation mod- els and aligning for generic visual-linguistic tasks. arXiv prep...

  17. [25]

    How far are we to gpt-4v? clos- ing the gap to commercial multimodal models with open- source suites

    Zhe Chen, Weiyun Wang, Hao Tian, Shenglong Ye, Zhang- wei Gao, Erfei Cui, Wenwen Tong, Kongzhi Hu, Jiapeng Luo, Zheng Ma, et al. How far are we to gpt-4v? clos- ing the gap to commercial multimodal models with open- source suites. arXiv preprint arXiv:2404.16821, 2024. 7 13 Fi...

  18. [26]

    Palm: Scaling language modeling with pathways

    Aakanksha Chowdhery, Sharan Narang, Jacob Devlin, Maarten Bosma, Gaurav Mishra, Adam Roberts, Paul Barham, Hyung Won Chung, Charles Sutton, Sebastian Gehrmann, et al. Palm: Scaling language modeling with pathways. Journal of Machine Learning Research, 24(240): 1–113, 2023. 1

  19. [27]

    Scaling instruction- finetuned language models

    Hyung Won Chung, Le Hou, Shayne Longpre, Barret Zoph, Yi Tay, William Fedus, Yunxuan Li, Xuezhi Wang, Mostafa Dehghani, Siddhartha Brahma, et al. Scaling instruction- finetuned language models. Journal of Machine Learning Research, 25(70):1–53, 2024. 3

  20. [28]

    Emu: Enhancing image generation models using photogenic nee- dles in a haystack, 2023

    Xiaoliang Dai, Ji Hou, Chih-Yao Ma, Sam Tsai, Jialiang Wang, Rui Wang, Peizhao Zhang, Simon Vandenhende, Xi- aofang Wang, Abhimanyu Dubey, Matthew Yu, Abhishek Kadian, Filip Radenovic, Dhruv Mahajan, Kunpeng Li, Yue Zhao, Vladan Petrovic, Mitesh Kumar Singh, Simran Mot- wani, ...

  21. [29]

    Flow matching in latent space, 2023

    Quan Dao, Hao Phung, Binh Nguyen, and Anh Tran. Flow matching in latent space, 2023. 1

  22. [30]

    Mostafa Dehghani, Josip Djolonga, Basil Mustafa, Pi- otr Padlewski, Jonathan Heek, Justin Gilmer, Andreas Steiner, Mathilde Caron, Robert Geirhos, Ibrahim Al- abdulmohsin, Rodolphe Jenatton, Lucas Beyer, Michael Tschannen, Anurag Arnab, Xiao Wang, Carlos Riquelme, Matthias Min...

  23. [31]

    Diffusion mod- els beat gans on image synthesis

    Prafulla Dhariwal and Alexander Nichol. Diffusion mod- els beat gans on image synthesis. In Advances in neural information processing systems, pages 8780–8794, 2021. 1

  24. [32]

    Score- based generative modeling with critically-damped langevin diffusion

    Tim Dockhorn, Arash Vahdat, and Karsten Kreis. Score- based generative modeling with critically-damped langevin diffusion. arXiv preprint arXiv:2112.07068, 2021. 1

  25. [33]

    Genie: Higher-order denoising diffusion solvers, 2022

    Tim Dockhorn, Arash Vahdat, and Karsten Kreis. Genie: Higher-order denoising diffusion solvers, 2022. 1

  26. [34]

    An image is worth 16x16 words: Transformers for image recognition at scale

    Alexey Dosovitskiy. An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929, 2020. 2

  27. [35]

    Structure and content-guided video synthesis with diffusion models

    Patrick Esser, Johnathan Chiu, Parmida Atighehchian, Jonathan Granskog, and Anastasis Germanidis. Structure and content-guided video synthesis with diffusion models. 14 A photo of a cat playing chess.A bird made of crystalA pair of old boots covered in mud. Photo of a bear cat...

  28. [36]

    Scaling rectified flow transformers for high-resolution image synthesis

    Patrick Esser, Sumith Kulal, Andreas Blattmann, Rahim Entezari, Jonas M ¨uller, Harry Saini, Yam Levi, Dominik Lorenz, Axel Sauer, Frederic Boesel, et al. Scaling rectified flow transformers for high-resolution image synthesis. In Forty-first International Conference on Machin...

  29. [37]

    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. 8, 4, 15

  30. [38]

    Ernie-vilg 2.0: Improving text-to- image diffusion model with knowledge-enhanced mixture- of-denoising-experts

    Zhida Feng, Zhenyu Zhang, Xintong Yu, Yewei Fang, Lanxin Li, Xuyi Chen, Yuxiang Lu, Jiaxiang Liu, Weichong Yin, Shikun Feng, et al. Ernie-vilg 2.0: Improving text-to- image diffusion model with knowledge-enhanced mixture- of-denoising-experts. In Proceedings of the IEEE/CVF Co...

  31. [39]

    Boost- ing latent diffusion with flow matching

    Johannes S Fischer, Ming Gui, Pingchuan Ma, Nick Stracke, Stefan A Baumann, and Bj ¨orn Ommer. Boost- ing latent diffusion with flow matching. arXiv preprint arXiv:2312.07360, 2023. 1

  32. [40]

    If: A github repository

    Deep Floyd. If: A github repository. https://github. com/deep-floyd/IF, 2023. 7

  33. [41]

    Lumina-t2x: Transforming text into any modality, resolution, and duration via flow-based large diffusion transformers

    Peng Gao, Le Zhuo, Ziyi Lin, Chris Liu, Junsong Chen, Ruoyi Du, Enze Xie, Xu Luo, Longtian Qiu, Yuhang Zhang, et al. Lumina-t2x: Transforming text into any modality, resolution, and duration via flow-based large diffusion transformers. arXiv preprint arXiv:2405.05945 ,

  34. [42]

    Geneval: An object-focused framework for evaluating text- to-image alignment

    Dhruba Ghosh, Hannaneh Hajishirzi, and Ludwig Schmidt. Geneval: An object-focused framework for evaluating text- to-image alignment. Advances in Neural Information Pro- cessing Systems, 36, 2024. 2, 7, 8, 3, 4, 5

  35. [43]

    Photorealistic video generation with diffusion models,

    Agrim Gupta, Lijun Yu, Kihyuk Sohn, Xiuye Gu, Meera Hahn, Li Fei-Fei, Irfan Essa, Lu Jiang, and Jos ´e Lezama. Photorealistic video generation with diffusion models,

  36. [44]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceed- 16 Figure 21. Visual comparison between PixelArt-α [21] and D-JEPA·T2I. ings of the IEEE conference on computer vision and pattern recognition, pages 770–778, 2016. 6

  37. [45]

    Masked autoencoders are scal- able vision learners

    Kaiming He, Xinlei Chen, Saining Xie, Yanghao Li, Piotr Doll´ar, and Ross Girshick. Masked autoencoders are scal- able vision learners. In Proceedings of the IEEE/CVF con- ference on computer vision and pattern recognition , pages 16000–16009, 2022. 1

  38. [46]

    Rethinking image aesthetics assessment: Models, datasets and benchmarks

    Shuai He, Yongchang Zhang, Rui Xie, Dongxiang Jiang, and Anlong Ming. Rethinking image aesthetics assessment: Models, datasets and benchmarks. In IJCAI, pages 942– 948, 2022. 1

  39. [47]

    Classifier-free diffusion guidance

    Jonathan Ho and Tim Salimans. Classifier-free diffusion guidance. In NeurIPS 2021 Workshop on Deep Generative Models and Downstream Applications, 2021. 8, 1

  40. [48]

    Classifier-free diffusion guidance

    Jonathan Ho and Tim Salimans. Classifier-free diffusion guidance. arXiv preprint arXiv:2207.12598, 2022. 4

  41. [49]

    Denoising dif- fusion probabilistic models

    Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising dif- fusion probabilistic models. In Advances in neural infor- mation processing systems, pages 6840–6851, 2020. 1

  42. [50]

    Visual comparison between HunyunDit [65] and D-JEPA·T2I

    Jonathan Ho, William Chan, Chitwan Saharia, Jay Whang, 17 Figure 22. Visual comparison between HunyunDit [65] and D-JEPA·T2I. Ruiqi Gao, Alexey Gritsenko, Diederik P. Kingma, Ben Poole, Mohammad Norouzi, David J. Fleet, and Tim Sali- mans. Imagen video: High definition video g...

  43. [51]

    Cascaded diffusion models for high fidelity image generation

    Jonathan Ho, Chitwan Saharia, William Chan, David J Fleet, Mohammad Norouzi, and Tim Salimans. Cascaded diffusion models for high fidelity image generation. Jour- nal of Machine Learning Research, 23(47):1–33, 2022. 1

  44. [52]

    Training compute-optimal large language mod- els

    Jordan Hoffmann, Sebastian Borgeaud, Arthur Mensch, Elena Buchatskaya, Trevor Cai, Eliza Rutherford, Diego de Las Casas, Lisa Anne Hendricks, Johannes Welbl, Aidan Clark, et al. Training compute-optimal large language mod- els. arXiv preprint arXiv:2203.15556, 2022. 1

  45. [53]

    T2i-compbench: A comprehensive bench- mark for open-world compositional text-to-image genera- tion

    Kaiyi Huang, Kaiyue Sun, Enze Xie, Zhenguo Li, and Xihui Liu. T2i-compbench: A comprehensive bench- mark for open-world compositional text-to-image genera- tion. Advances in Neural Information Processing Systems, 36:78723–78747, 2023. 2, 6, 8, 4

  46. [54]

    Estimation of non- normalized statistical models by score matching

    Aapo Hyv ¨arinen and Peter Dayan. Estimation of non- normalized statistical models by score matching. Journal of Machine Learning Research, 6(4), 2005. 1

  47. [55]

    Tero Karras, Miika Aittala, Timo Aila, and Samuli Laine. 18 A tranquil, anime-style koi pond in a serene Japanese garden, featuring blossoming cherry trees.A raccoon wearing cowboy hat and black leather jacket is behind the backyard window. Rain droplets on the window. Transfu...

  48. [56]

    Bert: Pre-training of deep bidirectional trans- formers for language understanding

    Jacob Devlin Ming-Wei Chang Kenton and Lee Kristina Toutanova. Bert: Pre-training of deep bidirectional trans- formers for language understanding. In Proceedings of naacL-HLT, page 2. Minneapolis, Minnesota, 2019. 1

  49. [57]

    Computational tradeoffs in image synthesis: Diffusion, masked-token, and next-token prediction

    Maciej Kilian, Varun Jampani, and Luke Zettlemoyer. Computational tradeoffs in image synthesis: Diffusion, masked-token, and next-token prediction. arXiv preprint arXiv:2405.13218, 2024. 1

  50. [58]

    Understanding diffu- sion objectives as the elbo with simple data augmentation

    Diederik Kingma and Ruiqi Gao. Understanding diffu- sion objectives as the elbo with simple data augmentation. Advances in Neural Information Processing Systems , 36,

  51. [59]

    Pick-a-pic: An open dataset of user preferences for text-to-image generation

    Yuval Kirstain, Adam Polyak, Uriel Singer, Shahbuland Matiana, Joe Penna, and Omer Levy. Pick-a-pic: An open dataset of user preferences for text-to-image generation. Advances in Neural Information Processing Systems , 36: 36652–36663, 2023. 8, 4

  52. [60]

    Flux.1: An open-source image genera- tion model

    Black Forest Labs. Flux.1: An open-source image genera- tion model. https://www.basedlabs.ai/tools/ 19 flux1, 2024. 4

  53. [61]

    Bloom: A 176b-parameter open-access multilingual language model

    Teven Le Scao, Angela Fan, Christopher Akiki, Ellie Pavlick, Suzana Ili ´c, Daniel Hesslow, Roman Castagn ´e, Alexandra Sasha Luccioni, Franc ¸ois Yvon, Matthias Gall´e, et al. Bloom: A 176b-parameter open-access multilingual language model. 2023. 1

  54. [62]

    Minimizing trajectory curvature of ode-based generative models, 2023

    Sangyun Lee, Beomsu Kim, and Jong Chul Ye. Minimizing trajectory curvature of ode-based generative models, 2023. 1

  55. [63]

    Genai-bench: Evaluating and im- proving compositional text-to-visual generation

    Baiqi Li, Zhiqiu Lin, Deepak Pathak, Jiayao Li, Yixin Fei, Kewen Wu, Tiffany Ling, Xide Xia, Pengchuan Zhang, Graham Neubig, et al. Genai-bench: Evaluating and im- proving compositional text-to-visual generation. arXiv preprint arXiv:2406.13743, 2024. 2, 7, 8

  56. [64]

    Autoregressive image generation without vec- tor quantization

    Tianhong Li, Yonglong Tian, He Li, Mingyang Deng, and Kaiming He. Autoregressive image generation without vec- tor quantization. arXiv preprint arXiv:2406.11838, 2024. 1, 3, 4

  57. [65]

    Hunyuan- dit: A powerful multi-resolution diffusion transformer with fine-grained chinese understanding

    Zhimin Li, Jianwei Zhang, Qin Lin, Jiangfeng Xiong, Yanxin Long, Xinchi Deng, Yingfang Zhang, Xingchao Liu, Minbin Huang, Zedong Xiao, et al. Hunyuan- dit: A powerful multi-resolution diffusion transformer with fine-grained chinese understanding. arXiv preprint arXiv:2405.0874...

  58. [66]

    Rich human feedback for text-to-image generation

    Youwei Liang, Junfeng He, Gang Li, Peizhao Li, Arseniy Klimovskiy, Nicholas Carolan, Jiao Sun, Jordi Pont-Tuset, Sarah Young, Feng Yang, et al. Rich human feedback for text-to-image generation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognitio...

  59. [67]

    Flow matching for generative modeling

    Yaron Lipman, Ricky TQ Chen, Heli Ben-Hamu, Maxim- ilian Nickel, and Matt Le. Flow matching for generative modeling. arXiv preprint arXiv:2210.02747, 2022. 1, 3

  60. [68]

    Yaron Lipman, Ricky T. Q. Chen, Heli Ben-Hamu, Maxi- milian Nickel, and Matthew Le. Flow matching for gener- ative modeling. In The Eleventh International Conference on Learning Representations, 2023. 1

  61. [69]

    Lumina-mgpt: Il- luminate flexible photorealistic text-to-image generation with multimodal generative pretraining

    Dongyang Liu, Shitian Zhao, Le Zhuo, Weifeng Lin, Yu Qiao, Hongsheng Li, and Peng Gao. Lumina-mgpt: Il- luminate flexible photorealistic text-to-image generation with multimodal generative pretraining. arXiv preprint arXiv:2408.02657, 2024. 1

  62. [70]

    Flow straight and fast: Learning to generate and transfer data with rectified flow.arXiv preprint arXiv:2209.03003, 2022

    Xingchao Liu, Chengyue Gong, and Qiang Liu. Flow straight and fast: Learning to generate and transfer data with rectified flow.arXiv preprint arXiv:2209.03003, 2022. 1

  63. [71]

    Instaflow: One step is enough for high-quality diffusion-based text-to-image generation, 2023

    Xingchao Liu, Xiwen Zhang, Jianzhu Ma, Jian Peng, and Qiang Liu. Instaflow: One step is enough for high-quality diffusion-based text-to-image generation, 2023. 1

  64. [72]

    Fixing weight decay regularization in adam

    Ilya Loshchilov, Frank Hutter, et al. Fixing weight decay regularization in adam. arXiv preprint arXiv:1711.05101, 5, 2017. 2

  65. [73]

    Dpm-solver++: Fast solver for guided sampling of diffusion probabilistic models, 2023

    Cheng Lu, Yuhao Zhou, Fan Bao, Jianfei Chen, Chongxuan Li, and Jun Zhu. Dpm-solver++: Fast solver for guided sampling of diffusion probabilistic models, 2023. 1

  66. [74]

    Albergo, Nicholas M

    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, 2024. 3, 1

  67. [75]

    Midjourney v6 - ai art generator,

    Midjourney Community. Midjourney v6 - ai art generator,

  68. [76]

    Freecontrol: Training-free spatial control of any text-to-image diffusion model with any condition

    Sicheng Mo, Fangzhou Mu, Kuan Heng Lin, Yanli Liu, Bochen Guan, Yin Li, and Bolei Zhou. Freecontrol: Training-free spatial control of any text-to-image diffusion model with any condition. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pag...

  69. [77]

    Glide: Towards photorealistic image genera- tion and editing with text-guided diffusion models

    Alex Nichol, Prafulla Dhariwal, Aditya Ramesh, Pranav Shyam, Pamela Mishkin, Bob McGrew, Ilya Sutskever, and Mark Chen. Glide: Towards photorealistic image genera- tion and editing with text-guided diffusion models. arXiv preprint arXiv:2112.10741, 2021. 1

  70. [78]

    Training lan- guage models to follow instructions with human feedback

    Long Ouyang, Jeffrey Wu, Xu Jiang, Diogo Almeida, Car- roll Wainwright, Pamela Mishkin, Chong Zhang, Sandhini Agarwal, Katarina Slama, Alex Ray, et al. Training lan- guage models to follow instructions with human feedback. Advances in neural information processing systems , 35...

  71. [79]

    Pavlov, A

    I. Pavlov, A. Ivanov, and S. Stafievskiy. Text-to- Image Benchmark: A benchmark for generative models. https://github.com/boomb0om/text2image- benchmark, 2023. Version 0.1.0. 3

  72. [80]

    Scalable diffusion mod- els with transformers

    William Peebles and Saining Xie. Scalable diffusion mod- els with transformers. In Proceedings of the IEEE/CVF In- ternational Conference on Computer Vision , pages 4195– 4205, 2023. 2, 5, 1

  73. [81]

    Ntk-aware scaled rope allows llama models to have extended (8k+) context size without any fine-tuning and minimal perplexity degrada- tion, 2023

    Bowen Peng and Jeffrey Quesnelle. Ntk-aware scaled rope allows llama models to have extended (8k+) context size without any fine-tuning and minimal perplexity degrada- tion, 2023. 4

  74. [82]

    Film: Visual reasoning with a general conditioning layer

    Ethan Perez, Florian Strub, Harm De Vries, Vincent Du- moulin, and Aaron Courville. Film: Visual reasoning with a general conditioning layer. In Proceedings of the AAAI conference on artificial intelligence, 2018. 2

  75. [83]

    Sdxl: Improving latent diffusion models for high-resolution image synthesis, 2023

    Dustin Podell, Zion English, Kyle Lacey, Andreas Blattmann, Tim Dockhorn, Jonas M ¨uller, Joe Penna, and Robin Rombach. Sdxl: Improving latent diffusion models for high-resolution image synthesis, 2023. 1, 7, 8, 4

  76. [84]

    Aram-Alexandre Pooladian, Heli Ben-Hamu, Carles Domingo-Enrich, Brandon Amos, Yaron Lipman, and Ricky T. Q. Chen. Multisample flow matching: Straight- ening flows with minibatch couplings, 2023. 1

  77. [85]

    Improving language understanding by gen- erative pre-training

    Alec Radford. Improving language understanding by gen- erative pre-training. 2018. 1

  78. [86]

    Language models are unsupervised multitask learners

    Alec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, Ilya Sutskever, et al. Language models are unsupervised multitask learners. OpenAI blog, 1(8):9,

  79. [87]

    Direct preference optimization: Your language model is secretly a reward model

    Rafael Rafailov, Archit Sharma, Eric Mitchell, Christo- pher D Manning, Stefano Ermon, and Chelsea Finn. Direct preference optimization: Your language model is secretly a reward model. Advances in Neural Information Processing Systems, 36, 2024. 2, 6

  80. [88]

    Exploring the limits of transfer learning with a unified text-to-text transformer

    Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, 20 and Peter J Liu. Exploring the limits of transfer learning with a unified text-to-text transformer. Journal of machine learning research, 21(140):1–67, 2020. 1

  81. [89]

    Zero-shot text-to-image generation

    Aditya Ramesh, Mikhail Pavlov, Gabriel Goh, Scott Gray, Chelsea V oss, Alec Radford, Mark Chen, and Ilya Sutskever. Zero-shot text-to-image generation. In Interna- tional conference on machine learning , pages 8821–8831. Pmlr, 2021. 1

  82. [90]

    Hierarchical text-conditional image generation with clip latents, 2022

    Aditya Ramesh, Prafulla Dhariwal, Alex Nichol, Casey Chu, and Mark Chen. Hierarchical text-conditional image generation with clip latents, 2022. 1, 4

  83. [91]

    Deepspeed: System optimizations enable training deep learning models with over 100 billion param- eters

    Jeff Rasley, Samyam Rajbhandari, Olatunji Ruwase, and Yuxiong He. Deepspeed: System optimizations enable training deep learning models with over 100 billion param- eters. In Proceedings of the 26th ACM SIGKDD Interna- tional Conference on Knowledge Discovery & Data Min- ing, p...

  84. [92]

    Gener- ating diverse high-fidelity images with vq-vae-2

    Ali Razavi, Aaron Van den Oord, and Oriol Vinyals. Gener- ating diverse high-fidelity images with vq-vae-2. Advances in neural information processing systems, 32, 2019. 1

  85. [93]

    High-resolution image synthesis with latent diffusion models

    Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj ¨orn Ommer. High-resolution image synthesis with latent diffusion models. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 10684–10695, 2022. 1, 7, 4

  86. [94]

    Im- agenet large scale visual recognition challenge

    Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, et al. Im- agenet large scale visual recognition challenge. Interna- tional journal of computer vision, 115:211–252, 2015. 1

  87. [95]

    Photorealistic text-to-image diffusion models with deep language understanding

    Chitwan Saharia, William Chan, Saurabh Saxena, Lala Li, Jay Whang, Emily L Denton, Kamyar Ghasemipour, Raphael Gontijo Lopes, Burcu Karagol Ayan, Tim Sali- mans, et al. Photorealistic text-to-image diffusion models with deep language understanding. Advances in neural in- forma...

  88. [96]

    Adversarial diffusion distillation

    Axel Sauer, Dominik Lorenz, Andreas Blattmann, and Robin Rombach. Adversarial diffusion distillation. In European Conference on Computer Vision, pages 87–103. Springer, 2025. 7

  89. [97]

    Laion-5b: An open large-scale dataset for train- ing next generation image-text models

    Christoph Schuhmann, Romain Beaumont, Richard Vencu, Cade Gordon, Ross Wightman, Mehdi Cherti, Theo Coombes, Aarush Katta, Clayton Mullis, Mitchell Worts- man, et al. Laion-5b: An open large-scale dataset for train- ing next generation image-text models. Advances in Neural Inf...

  90. [98]

    Make-a-video: Text-to-video generation without text-video data, 2022

    Uriel Singer, Adam Polyak, Thomas Hayes, Xi Yin, Jie An, Songyang Zhang, Qiyuan Hu, Harry Yang, Oron Ashual, Oran Gafni, Devi Parikh, Sonal Gupta, and Yaniv Taigman. Make-a-video: Text-to-video generation without text-video data, 2022. 1

  91. [99]

    Deep unsupervised learning using nonequilibrium thermodynamics

    Jascha Sohl-Dickstein, Eric Weiss, Niru Maheswaranathan, and Surya Ganguli. Deep unsupervised learning using nonequilibrium thermodynamics. In International confer- ence on machine learning, pages 2256–2265. PMLR, 2015. 1

  92. [100]

    Denoising diffusion implicit models

    Jiaming Song, Chenlin Meng, and Stefano Ermon. Denoising diffusion implicit models. arXiv preprint arXiv:2010.02502, 2020. 1

  93. [101]

    Denois- ing diffusion implicit models, 2022

    Jiaming Song, Chenlin Meng, and Stefano Ermon. Denois- ing diffusion implicit models, 2022. 1

  94. [102]

    Mugs: A multiple granularity semi-supervised method for text recognition

    Qi Song, Qianyi Jiang, Lei Wang, Lingling Zhao, and Rui Zhang. Mugs: A multiple granularity semi-supervised method for text recognition. In International Conference on Document Analysis and Recognition , pages 173–188. Springer, 2023. 1

  95. [103]

    Generative modeling by estimating gradients of the data distribution

    Yang Song and Stefano Ermon. Generative modeling by estimating gradients of the data distribution. In Advances in neural information processing systems, 2019. 1

  96. [104]

    Generative modeling by estimating gradients of the data distribution, 2020

    Yang Song and Stefano Ermon. Generative modeling by estimating gradients of the data distribution, 2020. 1

  97. [105]

    Score- based generative modeling through stochastic differential equations

    Yang Song, Jascha Sohl-Dickstein, Diederik P Kingma, Abhishek Kumar, Stefano Ermon, and Ben Poole. Score- based generative modeling through stochastic differential equations. In International Conference on Learning Repre- sentations. 1

  98. [106]

    Score- based generative modeling through stochastic differential equations

    Yang Song, Jascha Sohl-Dickstein, Diederik P Kingma, Abhishek Kumar, Stefano Ermon, and Ben Poole. Score- based generative modeling through stochastic differential equations. arXiv preprint arXiv:2011.13456, 2020. 1

  99. [107]

    Roformer: Enhanced transformer with rotary position embedding

    Jianlin Su, Murtadha Ahmed, Yu Lu, Shengfeng Pan, Wen Bo, and Yunfeng Liu. Roformer: Enhanced transformer with rotary position embedding. Neurocomputing, 568: 127063, 2024. 1, 3, 4

  100. [108]

    Journeydb: A benchmark for genera- tive image understanding

    Keqiang Sun, Junting Pan, Yuying Ge, Hao Li, Haodong Duan, Xiaoshi Wu, Renrui Zhang, Aojun Zhou, Zipeng Qin, Yi Wang, et al. Journeydb: A benchmark for genera- tive image understanding. Advances in Neural Information Processing Systems, 36, 2024. 7

  101. [109]

    Autoregressive model beats diffusion: Llama for scalable image generation.arXiv preprint arXiv:2406.06525, 2024

    Peize Sun, Yi Jiang, Shoufa Chen, Shilong Zhang, Bingyue Peng, Ping Luo, and Zehuan Yuan. Autoregressive model beats diffusion: Llama for scalable image generation.arXiv preprint arXiv:2406.06525, 2024. 1, 8, 4

  102. [110]

    Ernie 3.0: Large-scale knowl- edge enhanced pre-training for language understanding and generation

    Yu Sun, Shuohuan Wang, Shikun Feng, Siyu Ding, Chao Pang, Junyuan Shang, Jiaxiang Liu, Xuyi Chen, Yanbin Zhao, Yuxiang Lu, et al. Ernie 3.0: Large-scale knowl- edge enhanced pre-training for language understanding and generation. arXiv preprint arXiv:2107.02137, 2021. 1

  103. [111]

    Chameleon: Mixed-modal early-fusion foundation models

    Chameleon Team. Chameleon: Mixed-modal early-fusion foundation models. arXiv preprint arXiv:2405.09818 ,

  104. [112]

    Dreamina: Free ai image generator

    Dreamina Team. Dreamina: Free ai image generator. https://jimeng.jianying.com/, 2023. 7

  105. [113]

    Gem- ini: a family of highly capable multimodal models

    Gemini Team, Rohan Anil, Sebastian Borgeaud, Yonghui Wu, Jean-Baptiste Alayrac, Jiahui Yu, Radu Soricut, Jo- han Schalkwyk, Andrew M Dai, Anja Hauth, et al. Gem- ini: a family of highly capable multimodal models. arXiv preprint arXiv:2312.11805, 2023. 1

  106. [114]

    Kolors: Effective training of diffusion model for photorealistic text-to-image synthesis

    Kolors Team. Kolors: Effective training of diffusion model for photorealistic text-to-image synthesis. arXiv preprint,

  107. [115]

    Wanxiang Team. Wanx. urlhttps://tongyi.aliyun.com/wanxiang/, 2023. 7 21

  108. [116]

    Visual autoregressive modeling: Scalable im- age generation via next-scale prediction

    Keyu Tian, Yi Jiang, Zehuan Yuan, Bingyue Peng, and Li- wei Wang. Visual autoregressive modeling: Scalable im- age generation via next-scale prediction. arXiv preprint arXiv:2404.02905, 2024. 1

  109. [117]

    Improving and generalizing flow- based generative models with minibatch optimal transport,

    Alexander Tong, Nikolay Malkin, Guillaume Huguet, Yan- lei Zhang, Jarrid Rector-Brooks, Kilian Fatras, Guy Wolf, and Yoshua Bengio. Improving and generalizing flow- based generative models with minibatch optimal transport,

  110. [118]

    Llama: Open and efficient foundation language mod- els

    Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timoth ´ee Lacroix, Bap- tiste Rozi `ere, Naman Goyal, Eric Hambro, Faisal Azhar, et al. Llama: Open and efficient foundation language mod- els. arXiv preprint arXiv:2302.13971, 2023. 1

  111. [119]

    Llama 2: Open foundation and fine-tuned chat models

    Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, et al. Llama 2: Open foundation and fine-tuned chat models. arXiv preprint arXiv:2307.09288, 2023. 1

  112. [120]

    A connection between score matching and denoising autoencoders

    Pascal Vincent. A connection between score matching and denoising autoencoders. Neural computation, 23(7):1661– 1674, 2011. 1

  113. [121]

    Diffusion model alignment using direct preference optimization

    Bram Wallace, Meihua Dang, Rafael Rafailov, Linqi Zhou, Aaron Lou, Senthil Purushwalkam, Stefano Ermon, Caim- ing Xiong, Shafiq Joty, and Nikhil Naik. Diffusion model alignment using direct preference optimization. InProceed- ings of the IEEE/CVF Conference on Computer Vision ...

  114. [122]

    Emu3: Next-token prediction is all you need

    Xinlong Wang, Xiaosong Zhang, Zhengxiong Luo, Quan Sun, Yufeng Cui, Jinsheng Wang, Fan Zhang, Yueze Wang, Zhen Li, Qiying Yu, et al. Emu3: Next-token prediction is all you need. arXiv preprint arXiv:2409.18869, 2024. 8, 4

  115. [123]

    Pytorch image models

    Ross Wightman. Pytorch image models. https : / / github . com / rwightman / pytorch - image - models, 2019. 6

  116. [124]

    Liu, Lechao Xiao, Katie Ev- erett, Alex Alemi, Ben Adlam, John D

    Mitchell Wortsman, Peter J. Liu, Lechao Xiao, Katie Ev- erett, Alex Alemi, Ben Adlam, John D. Co-Reyes, Izzed- din Gur, Abhishek Kumar, Roman Novak, Jeffrey Pen- nington, Jascha Sohl-dickstein, Kelvin Xu, Jaehoon Lee, Justin Gilmer, and Simon Kornblith. Small-scale proxies for...

  117. [125]

    Show-o: One single transformer to unify multimodal under- standing and generation

    Jinheng Xie, Weijia Mao, Zechen Bai, David Junhao Zhang, Weihao Wang, Kevin Qinghong Lin, Yuchao Gu, Zhijie Chen, Zhenheng Yang, and Mike Zheng Shou. Show-o: One single transformer to unify multimodal under- standing and generation. arXiv preprint arXiv:2408.12528,

  118. [126]

    Imagere- ward: Learning and evaluating human preferences for text- to-image generation

    Jiazheng Xu, Xiao Liu, Yuchen Wu, Yuxuan Tong, Qinkai Li, Ming Ding, Jie Tang, and Yuxiao Dong. Imagere- ward: Learning and evaluating human preferences for text- to-image generation. Advances in Neural Information Pro- cessing Systems, 36, 2024. 2, 6

  119. [127]

    Raphael: Text- to-image generation via large mixture of diffusion paths

    Zeyue Xue, Guanglu Song, Qiushan Guo, Boxiao Liu, Zhuofan Zong, Yu Liu, and Ping Luo. Raphael: Text- to-image generation via large mixture of diffusion paths. Advances in Neural Information Processing Systems , 36,

  120. [128]

    Qwen2 technical report

    An Yang, Baosong Yang, Binyuan Hui, Bo Zheng, Bowen Yu, Chang Zhou, Chengpeng Li, Chengyuan Li, Dayiheng Liu, Fei Huang, et al. Qwen2 technical report. arXiv preprint arXiv:2407.10671, 2024. 1

  121. [129]

    Xlnet: Generalized autoregressive pre- training for language understanding

    Zhilin Yang. Xlnet: Generalized autoregressive pre- training for language understanding. arXiv preprint arXiv:1906.08237, 2019. 1

  122. [130]

    Vector-quantized image modeling with improved vqgan

    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. 1

  123. [131]

    Scaling autore- gressive models for content-rich text-to-image generation

    Jiahui Yu, Yuanzhong Xu, Jing Yu Koh, Thang Luong, Gunjan Baid, Zirui Wang, Vijay Vasudevan, Alexander Ku, Yinfei Yang, Burcu Karagol Ayan, et al. Scaling autore- gressive models for content-rich text-to-image generation. arXiv preprint arXiv:2206.10789, 2(3):5, 2022. 1, 8, 4

  124. [132]

    Magvit: Masked generative video transformer

    Lijun Yu, Yong Cheng, Kihyuk Sohn, Jos ´e Lezama, Han Zhang, Huiwen Chang, Alexander G Hauptmann, Ming- Hsuan Yang, Yuan Hao, Irfan Essa, et al. Magvit: Masked generative video transformer. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, p...

  125. [133]

    Language model beats diffusion–tokenizer is key to visual generation

    Lijun Yu, Jos ´e Lezama, Nitesh B Gundavarapu, Luca Ver- sari, 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. 1

  126. [134]

    Representation alignment for generation: Training diffu- sion 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 diffu- sion transformers is easier than you think. arXiv preprint arXiv:2410.06940, 2024. 1

  127. [135]

    Root mean square layer normalization, 2019

    Biao Zhang and Rico Sennrich. Root mean square layer normalization, 2019. 2

  128. [136]

    Transfusion: Pre- dict the next token and diffuse images with one multi-modal model

    Chunting Zhou, Lili Yu, Arun Babu, Kushal Tirumala, Michihiro Yasunaga, Leonid Shamis, Jacob Kahn, Xuezhe Ma, Luke Zettlemoyer, and Omer Levy. Transfusion: Pre- dict the next token and diffuse images with one multi-modal model. arXiv preprint arXiv:2408.11039, 2024. 4, 19

  129. [137]

    Lumina-next: Making lumina- t2x stronger and faster with next-dit

    Le Zhuo, Ruoyi Du, Han Xiao, Yangguang Li, Dongyang Liu, Rongjie Huang, Wenze Liu, Lirui Zhao, Fu-Yun Wang, Zhanyu Ma, et al. Lumina-next: Making lumina- t2x stronger and faster with next-dit. arXiv preprint arXiv:2406.18583, 2024. 1, 4 22

Pith tools

Reviewed August 12, 2026 · model on record in the stance chip above.