Pith. sign in

REVIEW 3 major objections 5 minor 33 references

Don't Forget your Inverse DDIM for Image Editing

T0 review · 3 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read Inversion-time self-attention maps alone can guide high-fidelity text edits in pre-trained diffusion models.

desk verdict A simple, efficient self-attention guidance idea that is unfortunately oversold by an unsupported central claim and a false abstract claim. read the letter →

arxiv 2505.09571 v1 pith:BPVLQH6V submitted 2025-05-14 cs.CV

classification cs.CV
keywords diffusionmodelsimageeditingDDIMinversionself-attentionguidanceclassifier-freecross-attentioncontrolprompt-basedattentionmaps
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 introduces SAGE, a method for prompt-based image editing that uses a pre-trained text-to-image diffusion model without any per-image optimization or fine-tuning. The method's central claim is that deterministic DDIM inversion already records enough information to reconstruct the unedited parts of an image: the self-attention maps produced during inversion serve as fixed targets that pull generation back toward the input while the target prompt drives the edit. SAGE stores those maps, then at each sampling step adds a gradient term that minimizes the L1 distance between the generation-time self-attention maps and the stored inversion-time maps. This gives high-fidelity background and structure preservation with lower memory use than optimization-based baselines, and the paper reports top or near-top scores across quantitative benchmarks and a user study.

What carries the argument

The central object is the collection of self-attention maps the diffusion U-Net computes during DDIM inversion; for 512x512 images the paper uses the 32x32 maps from the second and third encoder blocks, and 16x16 cross-attention maps for blending. These stored maps are the reference signal: a reconstruction loss compares them with the maps produced during DDIM sampling under the target prompt, and its gradient steers the latent trajectory back to the input's structure. The mechanism works because self-attention captures global interactions among all image tokens, so matching these maps preserves layout and identity without requiring the latent itself to match the input. A decreasing schedule for $\lambda$ lets early steps perform the edit and later steps refine reconstruction.

What would settle it

A direct test is to run SAGE twice on the same image and prompt, once with the real inversion-time self-attention maps and once with maps recorded from a different image's inversion; if structure and background preservation scores (LPIPS, structure distance) stay the same, the maps are not the carrier of the reconstruction signal and the method's explanation is wrong.

Watch

Extended reading notes

Core claim

The discovery is that reconstruction guidance for editing does not need to operate in the pixel or latent space, nor require optimizing a null embedding: the self-attention maps from a single deterministic DDIM inversion are a sufficient and stable target. During generation, SAGE applies classifier-free guidance between the input prompt and the target prompt, and simultaneously minimizes $L_{\text{self}}^t = \sum_i \|S_{\text{in}, t,i} - S_{\text{out}, t,i}\|_1$, where $S_{\text{in},t,i}$ are the self-attention maps recorded during inversion and $S_{\text{out},t,i}$ are the maps from the U-Net when conditioned on the target prompt at the same timestep. The gradient, scaled by a decreasing weight $\lambda$, is added to the noise update. The paper argues this stabilizes the reverse process and preserves unedited regions because self-attention encodes global spatial relationships, and it combines this with cross-attention local blending and replacement to refine where edits occur.

Load-bearing premise

The load-bearing empirical premise is that the self-attention maps recorded during DDIM inversion remain the correct targets while the model generates under the edited prompt, and that minimizing their L1 distance pulls the latent toward the input without suppressing the intended edit.

Editorial extensions

If this is right

  • SAGE completes an edit in about 12.6 seconds on an A100 with 7.4 GB peak memory, versus over a minute for null-text inversion, while keeping reconstruction metrics competitive.
  • Because reconstruction is anchored in attention-map space, the method transfers across PieBench and MagicBrush with the same hyperparameter set.
  • Prompt-based operations such as word swaps, object removal, and style transfer all reduce to the same pipeline: store inversion maps, then apply self-attention guidance plus cross-attention local blending.
  • The ablation shows that guidance from self-attention maps outperforms guidance from cross-attention maps and from latent-space ($z_t$) targeting on structure distance and LPIPS.

Reading between the lines

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

  • Editorial inference: because the reference maps come from an arbitrary inversion, the same guidance could be applied on top of exact or coupled inversion schemes by simply replacing the source of the recorded maps; the mechanism itself does not depend on DDIM's update rule.
  • Editorial inference: the reported failure mode in object removal, where removed objects are replaced by structurally similar content, suggests that masking self-attention guidance in the removed region is a concrete next test; the paper itself flags this direction.
  • Editorial inference: the fixed layer selection (32x32 maps from encoder blocks 2 and 3) is an empirical choice, so a systematic sweep over layers and resolutions could either harden the method or reveal that only a subset carries the reconstruction signal.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 5 minor

Summary. The paper proposes SAGE, a prompt-based image editing method that combines DDIM inversion with a self-attention guidance loss and cross-attention manipulation (local blending, cross-attention replacement, reweighting) to preserve unedited regions while applying text-driven edits. The central claim is that the self-attention maps recorded during DDIM inversion contain sufficient information to steer generation toward the input without per-image optimization, yielding high-fidelity editing with lower memory and compute than optimization-based baselines. The authors provide quantitative benchmarks on PieBench and MagicBrush, a user study, ablation studies, and public code.

Significance. If the central claim is established, SAGE would be a valuable practical contribution: it avoids per-image text-embedding optimization, runs in comparable time to Direct Inversion, and uses less memory in FP16. The paper ships code, provides ablations, and evaluates on two benchmark datasets, which are clear strengths. However, the current evidence does not yet isolate the effect of self-attention guidance from the local-blending component, and the manuscript contains internal inconsistencies about which CFG branch is guided. These issues are load-bearing for the claimed attribution of SAGE's fidelity to self-attention guidance, so the contribution, while promising, needs strengthening before publication.

major comments (3)
  1. [§III-A, Fig. 3, §V] There is a direct contradiction about which branch provides the self-attention maps S_out in Eq. (3). §III-A states that "during synthesis, corresponding maps S_out_i,t are collected from ε_θ(z_t, P_out)", whereas the caption of Fig. 3 and the Conclusion state that guidance is applied to the branch conditioned on the initial prompt P_in. The mechanism changes entirely depending on which branch is used: guiding toward P_in inversion maps is a reconstruction mechanism, while guiding toward P_out maps would push the edited image away from the input. The authors must clarify the exact branch and justify it, because the method's definition and the interpretation of all ablations depend on this choice.
  2. [Supp. §VII-C, Table VI; §III-B, Eq. (5)] The reconstruction-only experiment in Supp. Table VI tests the load-bearing claim that self-attention guidance alone preserves the input. With P_in = P_out and no local blending or cross-attention replacement, SAGE achieves structure distance 12.0, LPIPS 65.8, and MSE 65.1, markedly worse than Direct Inversion (3.0, 51.7, 28.9) and Null-Text Inversion (3.3, 54.8, 31.1). Yet the headline results in Tables II and IV come from the full pipeline, which includes local blending (Eq. (5)) that directly replaces z_{t-1} with the inversion latent z_in_{t-1} outside the edit mask. That direct latent copying is an explicit reconstruction mechanism that can explain the background-preservation gains independently of self-attention guidance. To support the paper's attribution, the authors should add an ablation that runs local blending without self-attention guidance and self-attention guidance without local blending on the same benchmark, and report both structure and background metrics.
  3. [Abstract; §IV-D, Table IV] The abstract's claim that "all 47 surveyed users preferred SAGE over competing methods" is contradicted by Table IV. The user study recruited 22 participants for the PieBench comparisons and 25 additional participants for the MagicBrush DI comparison (total 47), but SAGE's global preference over DI is 52.7% on both, and its global preference over NT is 54.5%. Many of the 47 users did not prefer SAGE in those comparisons. The same internal contradiction appears between the abstract and the Introduction's "preferred in over 60% of cases." The claims in the abstract and Sec. IV-D must be corrected to report preference rates per comparison, not a universal-preference statement.
minor comments (5)
  1. [Supp. §VII-B] Typo: "An appropiate balance" should be "An appropriate balance".
  2. [Supp. §VI] The dataset name is written inconsistently as "PIE-Bench" in the supplementary material and "PieBench" elsewhere; please unify.
  3. [Table V] The footnote states "FP32 best results are marked with *", but in the table the asterisks mark Plug-n-Play time and Direct Inversion memory, which are not clearly the best in their columns (e.g., SAGE FP16 ties at 7.4 GB memory). Please clarify what the asterisk denotes.
  4. [Eq. (3)] The summation index N and the subscript i are used without defining the set of blocks or the spatial resolution of the maps; please specify that the sum ranges over selected U-Net blocks and state the map sizes (e.g., 32x32 from blocks 2 and 3, as in Supp. VI-A) in the main text.
  5. [Fig. 9 caption] The phrase "'a cat tiger sitting next to a mirror" contains an extra leading apostrophe; please fix the typo in the prompt string.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: SAGE's editing fidelity is evaluated against external benchmarks, and the single self-cited λ schedule is not load-bearing.

full rationale

The paper's forward chain is a constructive method, not a derivation of a quantity from a fitted input. The reconstruction signal L_self (Eq. 3) is defined as an L1 distance between self-attention maps recorded during DDIM inversion and maps produced during generation, and it is used as an optimization objective for the latent update (Eq. 4); nothing in the reported metrics is fitted or predicted from L_self. The hyperparameter schedule 'Following [24], factor λ progressively decreases with t' is borrowed from prior work by two of the present authors, but it is a scalar schedule, not a load-bearing derivation, and external benchmarks (PieBench, MagicBrush) and ablations (Table I, Supp. Table VI) are used for evaluation. The fact that local blending (Eq. 5) directly copies inversion latents in masked regions is a mechanism-attribution concern, not a circularity: the method's advertised claims would still be empirically testable. No step reduces by construction to its own input, and the central comparison is against external baselines and user judgments.

Assumptions & free parameters 7 free parameters · 5 assumptions · 0 invented entities

Everything central to SAGE rests on a pretrained Stable Diffusion U-Net and on empirically chosen guidance maps, scales, and schedules. There are no invented entities. The method's core is an empirically tuned objective, not a derivation.

free parameters (7)
  • Classifier-free guidance scale w = 7.5
    Set for all SAGE runs; balances edit strength against reconstruction; Figure 9 shows sensitivity.
  • Self-attention guidance scale lambda = 200
    Gradient scale for the attention loss in Equation 4; chosen in preliminary tuning and evaluated in Figure 9.
  • Cross-attention reweighting factor = 2.0
    Applied to edited tokens; fixed in experiments.
  • Local blending schedule = first 40 of 50 steps
    Mask fusion active only in early steps; fixed hyperparameter.
  • Cross-attention replacement length = first 5 of 50 steps
    Replaces edited-token attention maps only in the first steps.
  • Selected self-attention map resolution and layers = 32x32 maps from 2nd/3rd encoder blocks; 16x16 cross-attention; 24x24 for 768px
    Chosen in preliminary analysis (Supplementary Section VI-A); the guidance loss is computed only on these maps.
  • FP16 loss scaling factor = 500
    Prevents zero gradients in half precision; affects guidance magnitude but is a technical detail.
assumptions (5)
  • domain assumption DDIM inversion with Pin yields a noise trajectory that, when sampled under CFG with Pout, can be redirected to produce a valid edited image.
    Equation 1 defines the inversion; the whole method assumes the inverted zT is a suitable starting point for editing under a different prompt.
  • domain assumption Self-attention maps in the pre-trained Stable Diffusion U-Net encode spatial structure that is comparable across inversion and generation trajectories.
    Section III-A records maps during inversion and compares them to maps during sampling; no theorem guarantees this correspondence.
  • domain assumption Minimizing L1 distance between attention maps via gradient on zt improves reconstruction without suppressing the intended edit.
    Equations 3 and 4; this is an empirical modeling assumption supported only by ablations.
  • domain assumption Stable Diffusion 1.4 and 2.1 checkpoints behave as published, and the chosen attention layers and map sizes are representative.
    All experiments rely on specific pretrained checkpoints; there is no formal verification.
  • domain assumption Standard metrics, LPIPS, SSIM, CLIP-T, DINO, and structure distance, provide meaningful measures of editing quality and background preservation.
    The paper uses established metrics but does not justify that they capture the intended perceptual properties.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Don't Forget your Inverse DDIM for Image Editing." pith.science (2026). https://pith.science/paper/BPVLQH6V

@misc{pith2026250509571,
  author       = {Pith},
  title        = {Pith review of: Don't Forget your Inverse DDIM for Image Editing},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/BPVLQH6V}},
  note         = {Machine review of arXiv:2505.09571}
}
read the original abstract

The field of text-to-image generation has undergone significant advancements with the introduction of diffusion models. Nevertheless, the challenge of editing real images persists, as most methods are either computationally intensive or produce poor reconstructions. This paper introduces SAGE (Self-Attention Guidance for image Editing) - a novel technique leveraging pre-trained diffusion models for image editing. SAGE builds upon the DDIM algorithm and incorporates a novel guidance mechanism utilizing the self-attention layers of the diffusion U-Net. This mechanism computes a reconstruction objective based on attention maps generated during the inverse DDIM process, enabling efficient reconstruction of unedited regions without the need to precisely reconstruct the entire input image. Thus, SAGE directly addresses the key challenges in image editing. The superiority of SAGE over other methods is demonstrated through quantitative and qualitative evaluations and confirmed by a statistically validated comprehensive user study, in which all 47 surveyed users preferred SAGE over competing methods. Additionally, SAGE ranks as the top-performing method in seven out of 10 quantitative analyses and secures second and third places in the remaining three.

Figures

Figures reproduced from arXiv: 2505.09571 by the authors.

Figure 1
Figure 1. Prompt-based image editing: the user can add, omit, [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Comparative Analysis of Diffusion-Based Image Editing Techniques. This review contrasts existing methodologies, which [PITH_FULL_IMAGE:figures/full_fig_p002_2.png] view at source ↗
Figure 3
Figure 3. Pipeline of SAGE: The process begins with DDIM inversion applied to the input image using its corresponding prompt, [PITH_FULL_IMAGE:figures/full_fig_p003_3.png] view at source ↗
Figures from the paper (8 more)
Figure 4
Figure 4. Figure 4: Positive and Negative prompt zˆ0 estimation across timesteps. We visualize the estimated zˆ0 for positive P out , negative prompt P in, and CFG (both P out and P in) during DDIM sampling with CFG. A. Self-Attention Guidance This paper proposes two complementary guidanc…
Figure 5
Figure 5. Figure 5: Averaged 16 × 16 cross-attention maps corresponding to “cat” and “goat” for the input “A cat and a goat.” B. Cross-Attention Manipulation Following [16] (see also [3]–[5], [15], [23]), this method uses the U-Net’s cross-attention maps—which link latent space coordinate…
Figure 6
Figure 6. Figure 6: Qualitative results of the ablation study. Each column corresponds to a configuration described in Table [PITH_FULL_IMAGE:figures/full_fig_p005_6.png]
Figure 7
Figure 7. Figure 7: Qualitative comparison with state-of-the-art methods. Examples are shown for both word insertion and word swap. [PITH_FULL_IMAGE:figures/full_fig_p006_7.png]
Figure 8
Figure 8. Figure 8: Examples from the PieBench dataset illustrating the [PITH_FULL_IMAGE:figures/full_fig_p007_8.png]
Figure 9
Figure 9. Figure 9: This matrix illustrates the interplay between CFG [PITH_FULL_IMAGE:figures/full_fig_p010_9.png]
Figure 11
Figure 11. Figure 11: Examples of object removal by SAGE. Although [PITH_FULL_IMAGE:figures/full_fig_p011_11.png]
Figure 12
Figure 12. Figure 12: This figure presents examples from the PieBench [PITH_FULL_IMAGE:figures/full_fig_p011_12.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

33 extracted references · 28 canonical work pages

  1. [1]

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

    C. Saharia, W. Chan, S. Saxena, L. Li, J. Whang, E. L. Denton, K. Ghasemipour, R. Gontijo Lopes, B. Karagol Ayan, T. Salimans et al., “Photorealistic text-to-image diffusion models with deep language understanding,” NeurIPS, vol. 35, pp. 36 479–36 494, 2022. 1, 3

  2. [2]

    High- resolution image synthesis with latent diffusion models,

    R. Rombach, A. Blattmann, D. Lorenz, P. Esser, and B. Ommer, “High- resolution image synthesis with latent diffusion models,” in CVPR, 2022, pp. 10 684–10 695. 1, 2, 3

  3. [3]

    Null- text inversion for editing real images using guided diffusion models,

    R. Mokady, A. Hertz, K. Aberman, Y . Pritch, and D. Cohen-Or, “Null- text inversion for editing real images using guided diffusion models,” in CVPR, 2023, pp. 6038–6047. 1, 2, 3, 4, 5, 6, 7

  4. [4]

    Negative-prompt inversion: Fast image inversion for editing with text-guided diffusion models,

    D. Miyake, A. Iohara, Y . Saito, and T. Tanaka, “Negative-prompt inversion: Fast image inversion for editing with text-guided diffusion models,” arXiv preprint arXiv:2305.16807 , 2023. 1, 2, 3, 4, 6, 7

  5. [5]

    Zero-shot image-to-image translation,

    G. Parmar, K. Kumar Singh, R. Zhang, Y . Li, J. Lu, and J.-Y . Zhu, “Zero-shot image-to-image translation,” in ACM SIGGRAPH, 2023, pp. 1–11. 1, 2, 4, 5, 6, 7

  6. [6]

    Classifier-free diffusion guidance,

    J. Ho and T. Salimans, “Classifier-free diffusion guidance,” in NeurIPS 2021 Workshop on Deep Generative Models and Downstream Applica- tions, 2021. 2, 4, 1

  7. [7]

    Denoising diffusion implicit models,

    J. Song, C. Meng, and S. Ermon, “Denoising diffusion implicit models,” in ICLR, 2021. 1, 2, 3

  8. [8]

    U-net: Convolutional networks for biomedical image segmentation,

    O. Ronneberger, P. Fischer, and T. Brox, “U-net: Convolutional networks for biomedical image segmentation,” in MICAI, 2015, pp. 234–241. 1

Show all 33 references
  1. [9]

    SDEdit: Guided image synthesis and editing with stochastic differential equations,

    C. Meng, Y . He, Y . Song, J. Song, J. Wu, J.-Y . Zhu, and S. Ermon, “SDEdit: Guided image synthesis and editing with stochastic differential equations,” in ICLR, 2022. 2

  2. [10]

    An image is worth one word: Personalizing text-to- image generation using textual inversion,

    R. Gal, Y . Alaluf, Y . Atzmon, O. Patashnik, A. H. Bermano, G. Chechik, and D. Cohen-or, “An image is worth one word: Personalizing text-to- image generation using textual inversion,” in ICLR, 2023. 2

  3. [11]

    Dreambooth: Fine tuning text-to-image diffusion models for subject- driven generation,

    N. Ruiz, Y . Li, V . Jampani, Y . Pritch, M. Rubinstein, and K. Aberman, “Dreambooth: Fine tuning text-to-image diffusion models for subject- driven generation,” in CVPR, 2023, pp. 22 500–22 510. 2

  4. [12]

    Diffusionclip: Text-guided diffusion models for robust image manipulation,

    G. Kim, T. Kwon, and J. C. Ye, “Diffusionclip: Text-guided diffusion models for robust image manipulation,” in CVPR, 2022, pp. 2426–2435. 2

  5. [13]

    Adding conditional control to text-to-image diffusion models,

    L. Zhang, A. Rao, and M. Agrawala, “Adding conditional control to text-to-image diffusion models,” in ICCV, 2023, pp. 3836–3847. 2

  6. [14]

    Plug-and-play diffusion features for text-driven image-to-image translation,

    N. Tumanyan, M. Geyer, S. Bagon, and T. Dekel, “Plug-and-play diffusion features for text-driven image-to-image translation,” in CVPR, 2023, pp. 1921–1930. 2, 3, 6, 1

  7. [15]

    Direct inversion: Boosting diffusion-based editing with 3 lines of code,

    X. Ju, A. Zeng, Y . Bian, S. Liu, and Q. Xu, “Direct inversion: Boosting diffusion-based editing with 3 lines of code,” arXiv preprint arXiv:2304.04269, 2023. 2, 4, 5, 6, 7, 1

  8. [16]

    Prompt-to-prompt image editing with cross-attention control,

    A. Hertz, R. Mokady, J. Tenenbaum, K. Aberman, Y . Pritch, and D. Cohen-or, “Prompt-to-prompt image editing with cross-attention control,” in ICLR, 2023. 2, 4, 5, 1

  9. [17]

    Edict: Exact diffusion inversion via coupled transformations,

    B. Wallace, A. Gokul, and N. Naik, “Edict: Exact diffusion inversion via coupled transformations,” in CVPR, 2023, pp. 22 532–22 541. 2

  10. [18]

    Exact diffusion inversion via bidirectional integration approximation,

    G. Zhang, J. P. Lewis, and W. B. Kleijn, “Exact diffusion inversion via bidirectional integration approximation,” in ECCV. Springer, 2024, pp. 19–36. 2

  11. [19]

    Inversion-free image editing with natural language,

    S. Xu, Y . Huang, J. Pan, Z. Ma, and J. Chai, “Inversion-free image editing with natural language,” arXiv preprint arXiv:2312.04965 , 2023. 3

  12. [20]

    Denoising diffusion probabilistic models,

    J. Ho, A. Jain, and P. Abbeel, “Denoising diffusion probabilistic models,” in NeurIPS, H. Larochelle, M. Ranzato, R. Hadsell, M. Balcan, and H. Lin, Eds., vol. 33. Curran Associates, Inc., 2020, pp. 6840–6851. 3

  13. [21]

    Attention is all you need,

    A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, and I. Polosukhin, “Attention is all you need,” NeurIPS, vol. 30, 2017. 3

  14. [22]

    Diffusion autoencoders: Toward a meaningful and decodable represen- tation,

    K. Preechakul, N. Chatthee, S. Wizadwongsa, and S. Suwajanakorn, “Diffusion autoencoders: Toward a meaningful and decodable represen- tation,” in CVPR, 2022. 3

  15. [23]

    Improving tuning-free real image editing with proximal guidance,

    L. Han, S. Wen, Q. Chen, Z. Zhang, K. Song, M. Ren, R. Gao, A. Stathopoulos, X. He, Y . Chen, D. Liu, Q. Zhangli, J. Jiang, Z. Xia, A. Srivastava, and D. Metaxas, “Improving tuning-free real image editing with proximal guidance,” in WACV, 2024. 4, 7

  16. [24]

    Zero- shot spatial layout conditioning for text-to-image diffusion models,

    G. Couairon, M. Careil, M. Cord, S. Lathuili `ere, and J. Verbeek, “Zero- shot spatial layout conditioning for text-to-image diffusion models,” in ICCV, 2023, pp. 2174–2183. 4

  17. [25]

    Magicbrush: A manually annotated dataset for instruction-guided image editing,

    K. Zhang, L. Mo, W. Chen, H. Sun, and Y . Su, “Magicbrush: A manually annotated dataset for instruction-guided image editing,” in NeurIPS,

  18. [26]

    Splicing vit features for semantic appearance transfer,

    N. Tumanyan, O. Bar-Tal, S. Bagon, and T. Dekel, “Splicing vit features for semantic appearance transfer,” in CVPR, 2022, pp. 10 748–10 757. 5

  19. [27]

    The unreasonable effectiveness of deep features as a perceptual metric,

    R. Zhang, P. Isola, A. A. Efros, E. Shechtman, and O. Wang, “The unreasonable effectiveness of deep features as a perceptual metric,” in CVPR, 2018. 5

  20. [28]

    Image quality assessment: from error visibility to structural similarity,

    Z. Wang, A. C. Bovik, H. R. Sheikh, and E. P. Simoncelli, “Image quality assessment: from error visibility to structural similarity,” IEEE transactions on image processing , vol. 13, no. 4, pp. 600–612, 2004. 5

  21. [29]

    GODIV A: generating open-domain videos from natural descriptions,

    C. Wu, L. Huang, Q. Zhang, B. Li, L. Ji, F. Yang, G. Sapiro, and N. Duan, “GODIV A: generating open-domain videos from natural descriptions,” CoRR, vol. abs/2104.14806, 2021. 5

  22. [30]

    Emerging properties in self-supervised vision transformers,

    M. Caron, H. Touvron, I. Misra, H. J ´egou, J. Mairal, P. Bojanowski, and A. Joulin, “Emerging properties in self-supervised vision transformers,” in ICCV, 2021, pp. 9650–9660. 5

  23. [31]

    On distillation of guided diffusion models,

    C. Meng, R. Rombach, R. Gao, D. Kingma, S. Ermon, J. Ho, and T. Salimans, “On distillation of guided diffusion models,” in CVPR,

  24. [32]

    Flow straight and fast: Learning to generate and transfer data with rectified flow,

    X. Liu, C. Gong, and qiang liu, “Flow straight and fast: Learning to generate and transfer data with rectified flow,” in ICLR, 2023. 8

  25. [33]

    Fireflow: Fast inversion of rectified flow for image semantic editing,

    Y . Deng, X. He, C. Mei, P. Wang, and F. Tang, “Fireflow: Fast inversion of rectified flow for image semantic editing,” arXiv preprint arXiv:2412.07517, 2024. 8 1 Don’t Forget your Inverse DDIM for Image Editing Supplementary Material The supplementary materials provide additi...

Pith tools

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