REVIEW 3 major objections 6 minor 2 cited by
Zigzag Diffusion Sampling: Diffusion Models Can Self-Improve via Self-Reflection
T0 review · 3 major / 6 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read Z-Sampling claims a pretrained text-to-image diffusion model can improve its own outputs, without retraining, by alternately denoising and inverting each latent so that the guidance gap between the two operations accumulates…
desk verdict A training-free zigzag sampling trick that plausibly improves text-to-image alignment, with an empirical case strong enough to survive a muddled theory section. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The named mechanism is diffusion self-reflection, executed as the zigzag cycle of one denoising step and one inversion step at the same timestep. The load-bearing identity is $\delta_{Z\text{-Sampling}}=\sum_t (x_t-\tilde{x}_t)^2 = \sum_t \alpha_t h_t^2(\delta_\gamma(u_\theta(x_t,c,t)-u_\theta(x_t,\varnothing,t)))^2$, with guidance gap $\delta_\gamma=\gamma_1-\gamma_2$ and weights $h_t=\sqrt{1/\alpha_t-1}-\sqrt{1/\alpha_{t-1}-1}$. This identity carries the argument because it turns the semantic gain into a per-step accumulation controlled by a knob the user can set, and it shows why end-to-end inversion, whose gain is a squared sum of the same terms, loses to the step-by-step version by Jensen's inequality. The approximation error $\tau_2$ from imperfect inversion is the opposing term that the paper argues zigzag truncation keeps small.
What would settle it
Run Z-Sampling with $\gamma_2=\gamma_1$ so the guidance gap is zero while keeping the zigzag updates; the paper predicts near-identical output to standard sampling, whereas a significant improvement would show the gain comes from the inversion path rather than the gap. A second check is to replace the inversion map with noise of the same magnitude: if the quality gain persists, the guidance-gap explanation is not needed.
Extended reading notes
Core claim
Z-Sampling decomposes the DDIM sampler into one-step maps and, at each zigzag step, computes $x_{t-1}=\Phi_t(x_t|c,\gamma_1)$, $\tilde{x}_t=\Psi_t(x_{t-1}|c,\gamma_2)$, then $x_{t-1}=\Phi_t(\tilde{x}_t|c,\gamma_1)$. The paper's central discovery is that the accumulated latent difference $\delta_{Z\text{-Sampling}}=\sum_t(x_t-\tilde{x}_t)^2$ decomposes into a semantic information gain term $\tau_1$ and an inversion approximation error term $\tau_2$, and that, neglecting $\tau_2$, the gain equals $\sum_t \alpha_t h_t^2(\delta_\gamma(u_\theta(x_t,c,t)-u_\theta(x_t,\varnothing,t)))^2$, where $\delta_\gamma=\gamma_1-\gamma_2$. Because this is a sum of squares rather than the square of a sum, the paper argues it accumulates instead of cancelling, and it visualizes the effect via cross-attention maps in which entity tokens sharpen after zigzag steps. Stated on the paper's own terms, diffusion self-reflection is a training-free way for a frozen diffusion model to improve its own alignment and visual quality.
Load-bearing premise
The proof that the guidance gap is what injects semantics assumes the inverted latent $\tilde{x}_t$ equals the denoised latent $x_t$ when the network evaluates both branches, whereas the method's mechanism depends on their being different; if inversion cannot be both accurate and different, the stated identity does not follow.
Editorial extensions
If this is right
- Without any training, a frozen model's outputs can be improved on human-preference and alignment metrics; for instance, DreamShaper-xl-v2-turbo with Z-Sampling reaches a 94% HPS v2 winning rate over its own standard sampling on DrawBench.
- The method applies to U-Net, DiT, and distilled-turbo architectures and to few-step samplers such as a 4-step setting, so it is not limited to slow or single-family models.
- Challenging compositional prompts such as counting, position, color binding, and multi-object co-occurrence show the largest alignment gains, which is exactly where standard classifier-free guidance tends to fail.
- Z-Sampling composes with orthogonal improvements: AYS sampling and Diffusion-DPO both improve further when combined with it.
- The benefit requires a deterministic sampler; with stochastic samplers such as ancestral Euler, inversion error grows and the gains shrink or reverse.
Reading between the lines
- A natural next experiment is to measure per-prompt gain against the size of $u_\theta(x_t,c,t)-u_\theta(x_t,\varnothing,t)$; if the mechanism is right, prompts with larger conditional-minus-unconditional score gaps should benefit most.
- The early-steps result, where most gain comes from the first zigzag steps, suggests a cheap variant that applies the zigzag only where it matters, reducing the extra network calls.
- If the latent-semantics story is correct, Z-Sampling should also improve prompt alignment for other deterministic conditional diffusion outputs, including video and 3D, whenever inversion is accurate enough; stochastic samplers would need a learned or corrected inversion first.
- The paper's own zero-gap experiment implies a possible diagnostic: with $\delta_\gamma=0$, residual differences measure pure inversion error, so reporting the ratio of $\tau_1$ to $\tau_2$ effects would let future work separate semantic accumulation from artifact reduction.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Z-Sampling, a training-free modification of DDIM-style sampling for text-to-image diffusion models. At each timestep in a chosen range, the method alternately performs a denoising step with classifier-free guidance scale gamma_1 and an inversion step with a smaller guidance scale gamma_2, then denoises again from the inverted latent. The authors claim this zigzag 'self-reflection' operation exploits the guidance gap delta_gamma = gamma_1 - gamma_2 to inject prompt-related semantic information into the latent path, improving generation quality and prompt alignment. The paper presents theoretical results (Theorems 1--3) intended to show that the cumulative squared latent displacement is proportional to the accumulated squared guidance-gap-weighted conditional--unconditional score difference, and extensive experiments across SD-2.1, SDXL, Hunyuan-DiT, and DreamShaper-xl-v2-turbo on Pick-a-Pic, DrawBench, GenEval, PartiPrompts, and MS-COCO, plus combinations with AYS and Diffusion-DPO, report consistent improvements over standard sampling.
Significance. If the empirical claims hold, Z-Sampling is practically valuable: it is a plug-and-play, training-free sampler that improves multiple diffusion architectures, including distilled and transformer-based models, and it can be combined with orthogonal methods. The experimental evaluation is broad, the reported winning rates on HPS v2 are high, and the public code is a concrete reproducibility asset. However, the theoretical contribution is not sound as written. The key theorem relies on an assumption that contradicts the algorithm's own definition, and the claimed derivation of the guidance-gap scaling is therefore invalid in its present form. The empirical results remain the main strength of the paper, but the theoretical narrative needs substantial repair before the paper can be accepted.
major comments (3)
- [Appendix F.3, Theorem 3 / Eq. (11)] The proof of Theorem 3 contains an internal contradiction. It states that 'the step-by-step approach results in x_t and \tilde{x}_t being the same at each timestep t,' but Proof F.2, Eq. (22), derives \tilde{x}_t = x_t + \sqrt{\alpha_t} h_t (\epsilon^\theta_t(x_t) - \epsilon^\theta_t(\tilde{x}_{t-1})), so the two latents differ by exactly the quantity whose accumulation the method exploits. The substitution of Eq. (5) into Eq. (24) is therefore valid only under the auxiliary assumption \tilde{x}_t = x_t, which would make the zigzag step a no-op in the exact-inversion limit. The note at the end of Proof F.2 redefines \epsilon^\theta_t(\tilde{x}_t) as the score evaluated at x_t with guidance \gamma_2, whereas Eq. (5) defines it at the latent \tilde{x}_t; this notational shift is load-bearing and is not justified. As written, Eq. (11) does not follow from Eq. (10). The theorem should either be proved under a consistent definition of the zigzag update, stated as an approximation with an explicit error bound, or removed and replaced by a heuristic argument.
- [Section 3.3, Theorem 2 / Eq. (10)] The paper treats the squared latent displacement \delta_{Z\text{-Sampling}} = \sum_t (x_t - \tilde{x}_t)^2 as a 'semantic information gain' without proving that larger displacement corresponds to better prompt alignment or image quality. Theorems 1--3 establish algebraic relationships among latent displacements and score differences; they do not establish a monotonic link between these displacements and any quality metric. The connection is asserted through the seed-level examples in Sections 3.1 and 3.2 and is supported only indirectly by the downstream experiments. This assumption should be stated explicitly as a heuristic, or replaced with an analysis that connects the displacement to the conditional score and to an image-quality measure, rather than being presented as part of the theoretical derivation.
- [Section 4, Figures 7 and 8] The empirical observation that the gains vanish as \gamma_2 approaches \gamma_1 is presented as verification of Eq. (11), but it is also a consistency property of the algorithm's definition: when \gamma_2 = \gamma_1 and inversion is an exact inverse of the denoising step, the zigzag update leaves x_t unchanged, so any method of this form would show a disappearing effect at zero gap. The experiments confirm the expected qualitative trend but do not independently validate the quadratic-in-\delta_\gamma form or the specific score-difference expression in Eq. (11). This is not a criticism of the empirical improvement itself, which is substantial, but it should not be cited as evidence for the flawed theorem.
minor comments (6)
- [Algorithm 1 and Section 4.1] Algorithm 1 uses the condition `if t > T - \lambda`; with the default \lambda = T - 1 stated in Section 4.1, the zigzag operation is applied for t = T, ..., 2, not 'throughout the entire path,' because t = 1 is excluded. Please clarify the intended range or set \lambda = T.
- [Section 4.1] 'lug (2022)' in the baselines paragraph is a broken citation; the corresponding reference list entry for RePaint lacks author names and is formatted inconsistently with the other references.
- [Section 4.2] The main text says 'As Table 10' when referring to the Semantic-CFG comparison, but that table is numbered Table 3 in the main text; the duplicate numbering of Semantic-CFG tables in the appendix should be reconciled.
- [Throughout] There are numerous typos and inconsistent spellings, including 'denosing' (Abstract, Section 2), 'procss' (Section 2), 'numeber' (Section 2), 'sclae' (Appendix D.4), 'Pick-a-Pick' versus 'Pick-a-Pic' throughout, and '\epsilon^j_\theta' in Eq. (21) of Proof F.1.
- [Table 12] Table 12's header lists 'AES↓', but AES is a higher-is-better metric; the arrow appears to be a typo and should be 'AES↑.'
- [Appendix E.1] The sentence 'a deterministic sampler implies that the inversion process is imprecise' appears to contradict the surrounding discussion, which argues that stochastic samplers introduce inversion inaccuracy; the intended statement is likely about stochastic samplers.
Circularity Check
Theorem 3's guidance-gap scaling is obtained by identifying x_t and \tilde{x}_t, making Eq. 11 an algebraic identity of the CFG formula rather than a property of the zigzag path.
-
self definitional
[Section 3.3, Proof F.3 (Eq. 11); cf. Algorithm 1 and Proof F.2 (Eq. 22)]
"Although the step-by-step approach results in xt and \tilde{x}t being the same at each timestep t, from equation 5, we note that ϵtθ(xt) and ϵtθ(\tilde{x}t) are obtained under guidance scales γ1 and γ2 respectively. Thus, the effect of Z-Sampling is further equivalent as δZ-Sampling = ΣTt=1 αth2t ((γ1 − γ2)(uθ(xt,c,t)−uθ(xt,∅,t)))2."
The theorem's conclusion is obtained by setting the two network-input latents equal (xt = \tilde{x}t), even though Algorithm 1 defines \tilde{x}t by inversion (\tilde{x}t = Ψt(xt−1|c,γ2)) and Proof F.2 itself derives \tilde{x}t = xt + √αt ht(ϵtθ(xt)−ϵtθ(\tilde{x}t−1)). With inputs identified, Eq. 11 is just the algebraic difference of the two CFG score definitions in Eq. 5: (1+γ1)u(xt,c)−γ1u(xt,∅) minus (1+γ2)u(xt,c)−γ2u(xt,∅) = (γ1−γ2)(u(xt,c)−u(xt,∅)). So the claimed 'theoretical' dependence on the guidance gap is built into the CFG formula by construction, not derived from the zigzag accumulation mechanism, and it contradicts the method's premise that the inverted latent differs from the denoised latent.
full rationale
The empirical comparisons (Tables 1-5, 6-11, Figure 6) are genuine external benchmarks against standard sampling, Resampling, AYS, CFG++, SEG, and Diffusion-DPO; those wins are not forced by the definitions and are not circular. However, the paper's central theoretical evidence for 'semantic information accumulation' is circular/inconsistent. Proof F.3 reduces the Z-Sampling effect to an identity of classifier-free guidance at a single latent (xt = \tilde{x}t), which is exactly the assumption that makes Eq. 11 equivalent to Eq. 5 rather than a prediction about the zigzag path. This conflicts with Algorithm 1 and Eq. 22, where \tilde{x}t is produced by inversion and differs from xt; the additional Jacobian-type term from the latent difference is dropped without justification. Theorem 2's Jensen comparison also labels an algebraic regrouping (τ1, τ2) as 'semantic information gain' by stipulation rather than by derivation. No load-bearing self-citation chain was found: self-citations to Golden Noise, IV-Mixed Sampler, and related lab work are contextual and not used to forbid alternatives. Overall score 6: the empirical results are independent, but the theory's central prediction reduces by construction.
Assumptions & free parameters
free parameters (4)
- denoising guidance scale gamma_1 =
5.5 (SDXL/SD2.1), 6.0 (Hunyuan-DiT), 3.5 (DreamShaper turbo)
- inversion guidance scale gamma_2 =
0
- zigzag steps lambda =
T-1 (full path) in main experiments
- backtracking stepsize k =
1
assumptions (5)
- domain assumption DDIM denoising (Eq. 2) and inversion (Eq. 4) are approximate inverses under epsilon_t_theta(x_tilde_{t-1}) approximately equal to epsilon_t_theta(x_tilde_t).
- standard math The score network u_theta accurately predicts conditional and unconditional noise, and CFG interpolation (Eq. 5) is valid.
- domain assumption Latents carrying prompt-related semantic information yield better conditional generations (Section 3.1).
- ad hoc to paper In Theorem 3, the latent for the denoising and inversion score evaluations is the same, x_tilde_t = x_t.
- ad hoc to paper Larger squared latent displacement delta reflects more 'semantic information gain' and better generation.
invented entities (2)
-
semantic information in latent space
-
diffusion self-reflection operation
Cite this review
Pith. "Pith review of Zigzag Diffusion Sampling: Diffusion Models Can Self-Improve via Self-Reflection." pith.science (2026). https://pith.science/paper/SL6TFGIB
@misc{pith2026241210891,
author = {Pith},
title = {Pith review of: Zigzag Diffusion Sampling: Diffusion Models Can Self-Improve via Self-Reflection},
year = {2026},
howpublished = {\url{https://pith.science/paper/SL6TFGIB}},
note = {Machine review of arXiv:2412.10891}
}
read the original abstract
Diffusion models, the most popular generative paradigm so far, can inject conditional information into the generation path to guide the latent towards desired directions. However, existing text-to-image diffusion models often fail to maintain high image quality and high prompt-image alignment for those challenging prompts. To mitigate this issue and enhance existing pretrained diffusion models, we mainly made three contributions in this paper. First, we propose diffusion self-reflection that alternately performs denoising and inversion and demonstrate that such diffusion self-reflection can leverage the guidance gap between denoising and inversion to capture prompt-related semantic information with theoretical and empirical evidence. Second, motivated by theoretical analysis, we derive Zigzag Diffusion Sampling (Z-Sampling), a novel self-reflection-based diffusion sampling method that leverages the guidance gap between denosing and inversion to accumulate semantic information step by step along the sampling path, leading to improved sampling results. Moreover, as a plug-and-play method, Z-Sampling can be generally applied to various diffusion models (e.g., accelerated ones and Transformer-based ones) with very limited coding and computational costs. Third, our extensive experiments demonstrate that Z-Sampling can generally and significantly enhance generation quality across various benchmark datasets, diffusion models, and performance evaluation metrics. For example, DreamShaper with Z-Sampling can self-improve with the HPSv2 winning rate up to 94% over the original results. Moreover, Z-Sampling can further enhance existing diffusion models combined with other orthogonal methods, including Diffusion-DPO.
Figures
Figures from the paper (22 more)
Forward citations
Cited by 2 Pith papers
-
Na\"ive PAINE: Lightweight Text-to-Image Generation Improvement with Prompt Evaluation
A lightweight predictor ranks initial noises by expected human-preference score for a prompt, selecting the best few for diffusion generation and reporting prompt difficulty.
-
Optimizing Few-Step Generation with Adaptive Matching Distillation
Adaptive Matching Distillation uses reward-model scores to reweight teacher and fake-teacher gradients, improving few-step diffusion distillation on image and video benchmarks.
Reference graph
Works this paper leans on
-
[1]
Repaint: Inpainting using denoising diffusion probabilistic models. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp.\ 11461--11471, 2022
work page 2022
-
[2]
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
arXiv 2023
-
[3]
Universal guidance for diffusion models
Arpit Bansal, Hong-Min Chu, Avi Schwarzschild, Soumyadip Sengupta, Micah Goldblum, Jonas Geiping, and Tom Goldstein. Universal guidance for diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 843--852, 2023
2023
-
[4]
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 Voleti, Adam Letts, et al. Stable video diffusion: Scaling latent video diffusion models to large datasets. arXiv preprint arXiv:2311.15127, 2023
arXiv 2023
-
[5]
Cfg++: Manifold-constrained classifier free guidance for diffusion models
Hyungjin Chung, Jeongsol Kim, Geon Yeong Park, Hyelin Nam, and Jong Chul Ye. Cfg++: Manifold-constrained classifier free guidance for diffusion models. arXiv preprint arXiv:2406.08070, 2024
arXiv 2024
-
[6]
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 Processing Systems, 36, 2024
2024
-
[7]
Animatediff: Animate your personalized text-to-image diffusion models without specific tuning
Yuwei Guo, Ceyuan Yang, Anyi Rao, Zhengyang Liang, Yaohui Wang, Yu Qiao, Maneesh Agrawala, Dahua Lin, and Bo Dai. Animatediff: Animate your personalized text-to-image diffusion models without specific tuning. arXiv preprint arXiv:2307.04725, 2023
arXiv 2023
-
[8]
Diffusion with offset noise, 2023
Nicholas Guttenberg. Diffusion with offset noise, 2023
work page 2023
Show all 61 references
-
[9]
Manifold preserving guided diffusion
Yutong He, Naoki Murata, Chieh-Hsin Lai, Yuhta Takida, Toshimitsu Uesaka, Dongjun Kim, Wei-Hsiang Liao, Yuki Mitsufuji, J Zico Kolter, Ruslan Salakhutdinov, et al. Manifold preserving guided diffusion. In The Twelfth International Conference on Learning Representations
-
[10]
Classifier-free diffusion guidance
Jonathan Ho and Tim Salimans. Classifier-free diffusion guidance. arXiv preprint arXiv:2207.12598, 2022
2022 arXiv
-
[11]
Denoising diffusion probabilistic models
Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffusion probabilistic models. Advances in neural information processing systems, 33: 0 6840--6851, 2020
2020
-
[12]
Video diffusion models
Jonathan Ho, Tim Salimans, Alexey Gritsenko, William Chan, Mohammad Norouzi, and David J Fleet. Video diffusion models. Advances in Neural Information Processing Systems, 35: 0 8633--8646, 2022
2022
-
[13]
Smoothed energy guidance: Guiding diffusion models with reduced energy curvature of attention
Susung Hong. Smoothed energy guidance: Guiding diffusion models with reduced energy curvature of attention. arXiv preprint arXiv:2408.00760, 2024
2024 arXiv
-
[14]
Improving sample quality of diffusion models using self-attention guidance
Susung Hong, Gyuseong Lee, Wooseok Jang, and Seungryong Kim. Improving sample quality of diffusion models using self-attention guidance. arXiv preprint arXiv:2210.00939, 2022
2022 arXiv
-
[15]
Towards mitigating hallucination in large language models via self-reflection
Ziwei Ji, Tiezheng Yu, Yan Xu, Nayeon Lee, Etsuko Ishii, and Pascale Fung. Towards mitigating hallucination in large language models via self-reflection. arXiv preprint arXiv:2310.06271, 2023
2023 arXiv
-
[16]
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: 0 36652--36663, 2023
2023
-
[17]
Unmasked teacher: Towards training-efficient video foundation models
Kunchang Li, Yali Wang, Yizhuo Li, Yi Wang, Yinan He, Limin Wang, and Yu Qiao. Unmasked teacher: Towards training-efficient video foundation models. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pp.\ 19948--19960, 2023
2023
-
[18]
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.08748, 2024
2024 arXiv
-
[19]
Common diffusion noise schedules and sample steps are flawed
Shanchuan Lin, Bingchen Liu, Jiashi Li, and Xiao Yang. Common diffusion noise schedules and sample steps are flawed. In Proceedings of the IEEE/CVF winter conference on applications of computer vision, pp.\ 5404--5411, 2024 a
2024
-
[20]
Sdxl-lightning: Progressive adversarial diffusion distillation
Shanchuan Lin, Anran Wang, and Xiao Yang. Sdxl-lightning: Progressive adversarial diffusion distillation. arXiv preprint arXiv:2402.13929, 2024 b
2024 arXiv
-
[21]
Microsoft coco: Common objects in context
Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Doll \'a r, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In European conference on computer vision, pp.\ 740--755. Springer, 2014
2014
-
[22]
Fetv: A benchmark for fine-grained evaluation of open-domain text-to-video generation
Yuanxin Liu, Lei Li, Shuhuai Ren, Rundong Gao, Shicheng Li, Sishuo Chen, Xu Sun, and Lu Hou. Fetv: A benchmark for fine-grained evaluation of open-domain text-to-video generation. Advances in Neural Information Processing Systems, 36, 2024
2024
-
[23]
Diffusion probabilistic models for 3d point cloud generation
Shitong Luo and Wei Hu. Diffusion probabilistic models for 3d point cloud generation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp.\ 2837--2845, 2021
2021
-
[24]
Guided image synthesis via initial image editing in diffusion model
Jiafeng Mao, Xueting Wang, and Kiyoharu Aizawa. Guided image synthesis via initial image editing in diffusion model. In Proceedings of the 31st ACM International Conference on Multimedia, pp.\ 5321--5329, 2023 a
2023
-
[25]
Semantic-driven initial image construction for guided image synthesis in diffusion model
Jiafeng Mao, Xueting Wang, and Kiyoharu Aizawa. Semantic-driven initial image construction for guided image synthesis in diffusion model. arXiv preprint arXiv:2312.08872, 2023 b
2023 arXiv
-
[26]
Null-text inversion for editing real images using guided diffusion models
Ron Mokady, Amir Hertz, Kfir Aberman, Yael Pritch, and Daniel Cohen-Or. Null-text inversion for editing real images using guided diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 6038--6047, 2023
2023
-
[27]
Synthetic shifts to initial seed vector exposes the brittle nature of latent-based diffusion models
Mao Po-Yuan, Shashank Kotyan, Tham Yik Foong, and Danilo Vasconcellos Vargas. Synthetic shifts to initial seed vector exposes the brittle nature of latent-based diffusion models. arXiv preprint arXiv:2312.11473, 2023
2023 arXiv
-
[28]
Sdxl: Improving latent diffusion models for high-resolution image synthesis
Dustin Podell, Zion English, Kyle Lacey, Andreas Blattmann, Tim Dockhorn, Jonas M \"u ller, Joe Penna, and Robin Rombach. Sdxl: Improving latent diffusion models for high-resolution image synthesis. arXiv preprint arXiv:2307.01952, 2023
2023 arXiv
-
[29]
Not all noises are created equally: Diffusion noise selection and optimization
Zipeng Qi, Lichen Bai, Haoyi Xiong, and Zeke Xie. Not all noises are created equally: Diffusion noise selection and optimization. arXiv preprint arXiv:2407.14041, 2024
2024 arXiv
-
[30]
Layered rendering diffusion model for controllable zero-shot image synthesis
Zipeng Qi, Guoxi Huang, Chenyang Liu, and Fei Ye. Layered rendering diffusion model for controllable zero-shot image synthesis. In European Conference on Computer Vision, pp.\ 426--443. Springer, 2025
2025
-
[31]
Learning transferable visual models from natural language supervision
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learning transferable visual models from natural language supervision. In International conference on machine learning, pp...
2021
-
[32]
High-resolution image synthesis with latent diffusion models
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj \"o rn Ommer. High-resolution image synthesis with latent diffusion models. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp.\ 10684--10695, 2022
2022
-
[33]
Align your steps: Optimizing sampling schedules in diffusion models
Amirmojtaba Sabour, Sanja Fidler, and Karsten Kreis. Align your steps: Optimizing sampling schedules in diffusion models. arXiv preprint arXiv:2404.14507, 2024
2024 arXiv
-
[34]
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 Salimans, et al. Photorealistic text-to-image diffusion models with deep language understanding. Advances in neural information...
2022
-
[35]
Improved techniques for training gans
Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, and Xi Chen. Improved techniques for training gans. Advances in neural information processing systems, 29, 2016
2016
-
[36]
Generating images of rare concepts using pre-trained diffusion models
Dvir Samuel, Rami Ben-Ari, Simon Raviv, Nir Darshan, and Gal Chechik. Generating images of rare concepts using pre-trained diffusion models. 2024
2024
-
[37]
Adversarial diffusion distillation
Axel Sauer, Dominik Lorenz, Andreas Blattmann, and Robin Rombach. Adversarial diffusion distillation. arXiv preprint arXiv:2311.17042, 2023
2023 arXiv
-
[38]
Laion-5b: An open large-scale dataset for training next generation image-text models
Christoph Schuhmann, Romain Beaumont, Richard Vencu, Cade Gordon, Ross Wightman, Mehdi Cherti, Theo Coombes, Aarush Katta, Clayton Mullis, Mitchell Wortsman, et al. Laion-5b: An open large-scale dataset for training next generation image-text models. Advances in Neural Informa...
2022
-
[39]
pytorch-fid: FID Score for PyTorch
Maximilian Seitzer. pytorch-fid: FID Score for PyTorch . https://github.com/mseitzer/pytorch-fid, August 2020. Version 0.3.0
2020
-
[40]
Iv-mixed sampler: Leveraging image diffusion models for enhanced video synthesis
Shitong Shao, Zikai Zhou, Lichen Bai, Haoyi Xiong, and Zeke Xie. Iv-mixed sampler: Leveraging image diffusion models for enhanced video synthesis. arXiv preprint arXiv:2410.04171, 2024 a
2024 arXiv
-
[41]
Bag of design choices for inference of high-resolution masked generative transformer
Shitong Shao, Zikai Zhou, Tian Ye, Lichen Bai, Zhiqiang Xu, and Zeke Xie. Bag of design choices for inference of high-resolution masked generative transformer. arXiv preprint arXiv:2411.10781, 2024 b
2024 arXiv
-
[42]
Rethinking the spatial inconsistency in classifier-free diffusion guidance
Dazhong Shen, Guanglu Song, Zeyue Xue, Fu-Yun Wang, and Yu Liu. Rethinking the spatial inconsistency in classifier-free diffusion guidance. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 9370--9379, 2024
2024
-
[43]
Reflexion: Language agents with verbal reinforcement learning
Noah Shinn, Federico Cassano, Ashwin Gopinath, Karthik Narasimhan, and Shunyu Yao. Reflexion: Language agents with verbal reinforcement learning. Advances in Neural Information Processing Systems, 36, 2024
2024
-
[44]
Denoising diffusion implicit models
Jiaming Song, Chenlin Meng, and Stefano Ermon. Denoising diffusion implicit models. arXiv preprint arXiv:2010.02502, 2020
2010 arXiv
-
[45]
Sv3d: Novel multi-view synthesis and 3d generation from a single image using latent video diffusion
Vikram Voleti, Chun-Han Yao, Mark Boss, Adam Letts, David Pankratz, Dmitry Tochilkin, Christian Laforte, Robin Rombach, and Varun Jampani. Sv3d: Novel multi-view synthesis and 3d generation from a single image using latent video diffusion. arXiv preprint arXiv:2403.12008, 2024
2024 arXiv
-
[46]
Diffusion model alignment using direct preference optimization
Bram Wallace, Meihua Dang, Rafael Rafailov, Linqi Zhou, Aaron Lou, Senthil Purushwalkam, Stefano Ermon, Caiming Xiong, Shafiq Joty, and Nikhil Naik. Diffusion model alignment using direct preference optimization. In Proceedings of the IEEE/CVF Conference on Computer Vision and...
2024
-
[47]
Tune-a-video: One-shot tuning of image diffusion models for text-to-video generation
Jay Zhangjie Wu, Yixiao Ge, Xintao Wang, Stan Weixian Lei, Yuchao Gu, Yufei Shi, Wynne Hsu, Ying Shan, Xiaohu Qie, and Mike Zheng Shou. Tune-a-video: One-shot tuning of image diffusion models for text-to-video generation. In Proceedings of the IEEE/CVF International Conference...
2023
-
[48]
Freeinit: Bridging initialization gap in video diffusion models
Tianxing Wu, Chenyang Si, Yuming Jiang, Ziqi Huang, and Ziwei Liu. Freeinit: Bridging initialization gap in video diffusion models. arXiv preprint arXiv:2312.07537, 2023 b
2023 arXiv
-
[49]
Freeinit: Bridging initialization gap in video diffusion models
Tianxing Wu, Chenyang Si, Yuming Jiang, Ziqi Huang, and Ziwei Liu. Freeinit: Bridging initialization gap in video diffusion models. In European Conference on Computer Vision, pp.\ 378--394. Springer, 2025
2025
-
[50]
Human preference score v2: A solid benchmark for evaluating human preferences of text-to-image synthesis
Xiaoshi Wu, Yiming Hao, Keqiang Sun, Yixiong Chen, Feng Zhu, Rui Zhao, and Hongsheng Li. Human preference score v2: A solid benchmark for evaluating human preferences of text-to-image synthesis. arXiv preprint arXiv:2306.09341, 2023 c
2023 arXiv
-
[51]
Imagereward: 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. Imagereward: Learning and evaluating human preferences for text-to-image generation. Advances in Neural Information Processing Systems, 36, 2024 a
2024
-
[52]
Good seed makes a good crop: Discovering secret seeds in text-to-image diffusion models
Katherine Xu, Lingzhi Zhang, and Jianbo Shi. Good seed makes a good crop: Discovering secret seeds in text-to-image diffusion models. arXiv preprint arXiv:2405.14828, 2024 b
2024 arXiv
-
[53]
Guidance with spherical gaussian constraint for conditional diffusion
Lingxiao Yang, Shutong Ding, Yifan Cai, Jingyi Yu, Jingya Wang, and Ye Shi. Guidance with spherical gaussian constraint for conditional diffusion. In Forty-first International Conference on Machine Learning
-
[54]
Text-to-image rectified flow as plug-and-play priors
Xiaofeng Yang, Cheng Chen, Xulei Yang, Fayao Liu, and Guosheng Lin. Text-to-image rectified flow as plug-and-play priors. arXiv preprint arXiv:2406.03293, 2024
2024 arXiv
-
[55]
Scaling autoregressive 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 autoregressive models for content-rich text-to-image generation. Transactions on Machine Learning Research
-
[56]
Chronomagic-bench: A benchmark for metamorphic evaluation of text-to-time-lapse video generation
Shenghai Yuan, Jinfa Huang, Yongqi Xu, Yaoyang Liu, Shaofeng Zhang, Yujun Shi, Ruijie Zhu, Xinhua Cheng, Jiebo Luo, and Li Yuan. Chronomagic-bench: A benchmark for metamorphic evaluation of text-to-time-lapse video generation. arXiv preprint arXiv:2406.18522, 2024
2024 arXiv
-
[57]
Golden noise for diffusion models: A learning framework
Zikai Zhou, Shitong Shao, Lichen Bai, Zhiqiang Xu, Bo Han, and Zeke Xie. Golden noise for diffusion models: A learning framework. arXiv preprint arXiv:2411.09502, 2024
2024 arXiv
-
[58]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...
-
[59]
@esa (Ref
\@ifxundefined[1] #1\@undefined \@firstoftwo \@secondoftwo \@ifnum[1] #1 \@firstoftwo \@secondoftwo \@ifx[1] #1 \@firstoftwo \@secondoftwo [2] @ #1 \@temptokena #2 #1 @ \@temptokena \@ifclassloaded agu2001 natbib The agu2001 class already includes natbib coding, so you should ...
-
[60]
\@lbibitem[] @bibitem@first@sw\@secondoftwo \@lbibitem[#1]#2 \@extra@b@citeb \@ifundefined br@#2\@extra@b@citeb \@namedef br@#2 \@nameuse br@#2\@extra@b@citeb \@ifundefined b@#2\@extra@b@citeb @num @parse #2 @tmp #1 NAT@b@open@#2 NAT@b@shut@#2 \@ifnum @merge>\@ne @bibitem@firs...
-
[61]
@open @close @open @close and [1] URL: #1 \@ifundefined chapter * \@mkboth \@ifxundefined @sectionbib * \@mkboth * \@mkboth\@gobbletwo \@ifclassloaded amsart * \@ifclassloaded amsbook * \@ifxundefined @heading @heading NAT@ctr thebibliography [1] @ \@biblabel @NAT@ctr \@bibset...
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.