Pith. sign in

REVIEW 4 major objections 5 minor 56 references

The paper claims that instruction-based image editing can be reframed as reference-image-based text-to-image generation, and that attention bridges between two UNets make the resulting edits more accurate and more consistent than instructio

Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →

DescriptiveEdit turns semantic editing into reference-conditioned text-to-image generation, reporting state-of-the-art scores on the Emu Edit benchmark with a frozen backbone and about 75M trainable parameters.

T0 review reviewed 2026-08-05 challenge →

load-bearing objection A genuinely useful reframing of editing as reference-conditioned T2I generation, undermined by an unreproducible evaluation protocol that makes the headline numbers unproven. the 4 major comments →

arxiv 2508.20505 v1 pith:L3LCJY5K submitted 2025-08-28 cs.CV

Describe, Don't Dictate: Semantic Image Editing with Natural Language Intent

classification cs.CV
keywords semantic image editingdescription-based editingreference-image conditioningdiffusion modelattention bridgeLoRAEmu Edit benchmarktext-to-image generation
verification ladder T0 review T1 audit T2 compute T3 formal T4 reserved

The pith

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

The reading

The paper sets out to show that semantic image editing can be reframed as reference-image-based text-to-image generation: instead of telling the model what to change, the user describes the final image. The proposed framework, DescriptiveEdit, keeps a pretrained text-to-image model frozen and injects the original image's features into its denoising stream through new cross-attention bridges between two UNets, training only those bridges and a zero-initialized linear projection via LoRA. The authors claim this preserves the generative power of the base model, avoids inversion reconstruction errors, and removes dependence on large instruction-labeled datasets. On a manually filtered Emu Edit test set, they report the best L1 distance, DINO-I, CLIP-I, LPIPS, and PSNR among the listed baselines, with instruction adherence competitive with the best training-free method. If the claim holds, image editing would inherit the scale, quality, and plugin ecosystem of text-to-image models instead of requiring specialized instruction data and full-model retraining.

Core claim

The central claim is that 'instruction-based image editing' can be equivalently staged as 'instructions → edit descriptions → edited images', and that a text-to-image model conditioned on a reference image and an edit description can perform the edit better than models trained on instruction triplets. The mechanism is a Cross-Attentive UNet: a frozen denoising UNet and a reference UNet with shared weights operate in parallel, and at matched self-attention layers the reference UNet's query attends to the denoising UNet's key and value features. The resulting reference-enhanced feature is added to the denoising UNet's self-attention output through a zero-initialized learned linear layer, so th

What carries the argument

The load-bearing object is an attention bridge between two UNets: at self-attention layers, the reference UNet encoding the original image provides queries Q_Io, the denoising UNet provides keys K_Te and values V_Te, and the cross-attention output Z' = CA(Q_Io, K_Te, V_Te) is blended into the denoising stream as Zin = Z + Linear(Z'), where Linear is zero-initialized. This carries reference image structure into prompt-driven generation while leaving the base model's weights untouched, and the zero initialization ensures training starts from the unmodified text-to-image behavior.

Load-bearing premise

The reported gains rest on the assumption that the manually filtered Emu Edit subset is a fair, representative test bed; the paper does not disclose how many or which samples were removed, and some baseline numbers were taken from the original unfiltered benchmark.

What would settle it

Recompute the main table on the full, unfiltered Emu Edit test set with every baseline running on the identical samples, and also on the authors' filtered subset; if the L1 advantage over AnyEdit (0.065 vs 0.067) or the DINO-I advantage (0.843 vs 0.809) disappears or flips, the claimed consistency improvement is not supported. Auditing the removed samples for caption–source mismatches would show whether the filter disproportionately penalized other methods.

Watch this falsifier. Get emailed when new claim-graph text bears on it.

If this is right

  • Instruction-labeled editing datasets become less necessary: ordinary image–description pairs can supply the training signal for the attention bridges.
  • Because the base model stays frozen, community extensions such as ControlNet, IP-Adapter, and external style checkpoints can be combined with the editor without retraining.
  • The same attention-bridge recipe transfers beyond UNet backbones to Diffusion Transformer models such as Flux.
  • The λI guidance term gives users a single control knob that trades edit strength against reference preservation.
  • Description prompts provide richer conditioning than instruction prompts, yielding more precise edits under the same intended change.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • If the reframing holds, instruction datasets could be bypassed entirely: any captioner that converts instructions into descriptions could generate training pairs at web scale, letting editing scale with text-to-image data.
  • A direct testable extension is training on pure caption–image pairs with synthetic descriptions and checking whether editing accuracy holds without any instruction labels.
  • The manual filtering of the Emu Edit benchmark leaves the exact numerical ranking provisional; running every baseline on the same filtered subset, or publishing the filter criteria, would settle whether the reported improvements are robust.
  • The attention-bridge pattern may transfer to other consistency-critical tasks, such as subject-driven generation, video editing, or inpainting, because it injects reference structure without altering base weights.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

4 major / 5 minor

Summary. The paper proposes DescriptiveEdit, a semantic image editing framework that reframes instruction-based editing as reference-image-based text-to-image generation. The method freezes a pre-trained T2I UNet, adds a second 'Ref-UNet' to encode the input image, and introduces attention-bridge layers between the two UNets (Eq. 4), followed by a learnable zero-initialized linear fusion (Eq. 5) and LoRA-based tuning. Training uses the UltraEdit dataset, with a modified diffusion objective and classifier-free guidance at inference (Eqs. 6-7). Experiments on the Emu Edit benchmark claim improvements in editing accuracy and consistency over training-free and training-based baselines (Table 1), and additional ablations and qualitative demonstrations show compatibility with ControlNet, IP-Adapter, and DiT-based models such as Flux.

Significance. If the empirical claims were solid, this would be a useful contribution: the conceptual reframing from instructions to descriptions is elegant, the architecture is parameter-efficient and non-invasive, and compatibility with existing T2I ecosystems is a practical advantage. The paper also includes several controlled ablations (attention fusion strategies, description vs. instruction inputs) that support the design choices internally. However, the headline quantitative claim currently rests on a manually filtered evaluation whose criteria and counts are unreported and whose baseline protocols are not apples-to-apples, so the significance of the reported gains cannot be assessed without additional evidence.

major comments (4)
  1. [Sec. 4.1 and Table 1] The manual filtering of the Emu Edit test set is underspecified: the paper does not state how many samples were removed, what exact criteria defined a 'non-compliant' sample, or whether the retained sample IDs are released. This makes the evaluation non-reproducible. More importantly, Table 1 mixes protocols: EmuEdit* is taken from the original paper and therefore was evaluated on the unfiltered benchmark, while the other methods (and ours) are scored on the filtered subset. If the filter disproportionately removes cases where other methods succeed or where DescriptiveEdit fails, the reported margins (e.g., DINO-I 0.843 vs. EmuEdit* 0.819, CLIP-I 0.874 vs. 0.859) could be protocol artifacts. The authors must provide the filter criteria, removal count, the full list of retained sample IDs, and re-evaluate all baselines on the same filtered subset.
  2. [Table 1 and Sec. 4.2] The quantitative comparison lacks statistical support. No error bars, confidence intervals, or multiple-seed results are reported, and several headline margins are extremely small: L1 0.065 vs. AnyEdit† 0.067, CLIP-T 0.315 vs. RF-Edit 0.319 (the latter is actually higher for the baseline), and PSNR 20.99 vs. FPE 20.41. Given the manual filtering issue above, these differences could easily be within noise. The paper should report variance across seeds or at least confidence intervals, and should identify which pairwise improvements are statistically significant.
  3. [Sec. 3.2.1, Eq. (4)] The described attention-bridge mechanism is underspecified and potentially inconsistent with the stated goal. Eq. (4) sets Z' = CA(Q_Io, K_Te, V_Te), with the query taken from the Ref-UNet's self-attention and the key/value from the denoising UNet's self-attention. The text says this 'enables the denoising UNet to incorporate information from the Ref-UNet,' but as written, the query comes from the reference branch, not the denoising branch. This would more naturally route the denoising UNet's features through reference-position queries rather than injecting reference content into the denoising stream. The tensor-shape alignment and the role of each branch (which attends to which) need to be stated explicitly, and Eq. (4) should include the projection matrices. This is central to the proposed architecture, so a clear correction or justification is required.
  4. [Sec. 3.3 and Table 2] The training/inference setup is reported only partially. Eq. (6) conditions on Z_o^s with a fixed s=0, but the paper does not specify how the reference UNet processes this clean latent versus the noisy latent of the edited image in terms of shared or separate timestep embeddings. Similarly, Table 2 ('Description vs. Instruction') does not state on which test set these numbers are computed or whether the same filtering was applied. These omissions make it hard to reproduce the controlled comparison that supports the central conceptual claim.
minor comments (5)
  1. [Table 1] The method name is spelled 'DescribeEdit' in the table row, which is inconsistent with 'DescriptiveEdit' elsewhere. Also, the footnote says † indicates retraining 'on our training dataset,' but it is unclear whether this means the UltraEdit dataset or a different subset; please clarify.
  2. [Sec. 4.2] The text states 'our model achieves a competitive CLIP-T score (0.315), which is comparable to RF-Edit (0.319),' but 0.315 is below 0.319. This phrasing is misleading; either report it as slightly lower or explain why the difference is not meaningful.
  3. [Sec. 4.4] The ablation on λI reports a sensible qualitative range (1 to 2.5) but no quantitative curves. Adding a plot of consistency metrics vs. λI would strengthen this section.
  4. [Fig. 2] The attention-bridge diagram is hard to read at the current resolution; the flow from Ref-UNet to the denoising UNet and back should be drawn with clearer arrows and labeled tensor dimensions.
  5. [References] Some references appear twice (e.g., [10] and [31] list the same paper with slightly different venue formatting). Please unify.

Circularity Check

0 steps flagged

No circular derivation; the self-referential evaluation-protocol issue is a soundness concern, not circularity.

full rationale

The paper is an empirical systems paper. Its central claim is that instruction-based editing can be reframed as reference-image-based text-to-image generation, implemented by attention bridges between a frozen denoising UNet and a reference UNet with LoRA tuning. The load-bearing equations—Eq. (4), Z' = CA(Q_Io, K_Te, V_Te), and Eq. (5), Zin = Z + Linear(Z')—are architectural definitions, not reductions of the reported metrics to fitted inputs. Training uses the UltraEdit dataset and the diffusion objective in Eq. (6), while evaluation is on the Emu Edit benchmark against external baselines; the headline L1, DINO-I, CLIP-I, and PSNR numbers are therefore measured outputs, not quantities defined by the method's construction. No load-bearing self-citation chain or imported uniqueness theorem is present: self-citations such as [7] and [42] appear only in related-work enumerations and are not used to justify the central claim. The only self-referential element is the manual filtering of the Emu Edit test set described in Sec. 4.1 ('we manually filter out non-compliant samples before calculating the metrics'). That is a genuine soundness and auditability concern—filter sizes and criteria are unreported, and EmuEdit* results are taken from the original unfiltered benchmark—but it is a data-selection/protocol issue, not a derivation that reduces to its own inputs. Under the circularity definition used here, the paper is self-contained against external benchmarks and exhibits no significant circularity.

Axiom & Free-Parameter Ledger

5 free parameters · 4 axioms · 0 invented entities

No new physical entities are introduced. The counted free parameters are training and inference hyperparameters; the key unquantified choices are the guidance weights and the manual benchmark filtering procedure, which is not listed as a parameter but affects every reported number.

free parameters (5)
  • guidance weight lambda_I = 1.0-2.5 (recommended range)
    Inference-time strength of the reference-image condition in Eq. (7); chosen by 'empirical observation' in Sec. 4.4, trading edit intensity against reference preservation.
  • guidance weight lambda_T = not specified
    Text guidance strength in Eq. (7); value not reported in the main text, making the exact evaluation configuration unreproducible.
  • LoRA rank / alpha = 64 / 64
    Hyperparameters for the attention-bridge low-rank tuning (Sec. 4.1).
  • conditioning dropout = 5%
    Independent 5% dropout of description and reference for classifier-free guidance (Sec. 3.3).
  • reference timestep s = 0
    Reference image is always fed clean (s=0) in Eq. (6); justified by a Diffusion-Forcing analogy but not ablated.
axioms (4)
  • domain assumption Attention bridges between the Ref-UNet and the frozen denoising UNet transmit sufficient structural and semantic information for editing (Eq. 4).
    The whole method depends on this transfer; validated only qualitatively and on a single filtered benchmark.
  • domain assumption Descriptive prompts are inherently more compatible with pre-trained T2I priors than imperative instructions.
    Conceptual foundation (Sec. 1, Tab. 2), but Tab. 2's gains are small (CLIP-T 0.284 vs 0.272; DINO-I 0.741 vs 0.739) and its setup is unclear.
  • domain assumption Frozen SD1.5 retains generative capacity when conditioned through added zero-initialized linear layers and attention bridges.
    Zero-init preserves the base model at initialization (ControlNet-style), but that the trained balance generalizes is an empirical assumption.
  • standard math Standard LDM objective and IP2P-style classifier-free guidance are valid for this conditional setting (Eqs. 6, 7).
    Inherited from cited prior work; not in dispute.

reviewed 2026-08-05 · how reviews work

0 comments
Cite this review

Pith. "Pith review of Describe, Don't Dictate: Semantic Image Editing with Natural Language Intent." pith.science (2026). https://pith.science/paper/L3LCJY5K

@misc{pith2026250820505,
  author       = {Pith},
  title        = {Pith review of: Describe, Don't Dictate: Semantic Image Editing with Natural Language Intent},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/L3LCJY5K}},
  note         = {Machine review of arXiv:2508.20505}
}
Share X Bluesky LinkedIn Reddit HN
read the original abstract

Despite the progress in text-to-image generation, semantic image editing remains a challenge. Inversion-based algorithms unavoidably introduce reconstruction errors, while instruction-based models mainly suffer from limited dataset quality and scale. To address these problems, we propose a descriptive-prompt-based editing framework, named DescriptiveEdit. The core idea is to re-frame `instruction-based image editing' as `reference-image-based text-to-image generation', which preserves the generative power of well-trained Text-to-Image models without architectural modifications or inversion. Specifically, taking the reference image and a prompt as input, we introduce a Cross-Attentive UNet, which newly adds attention bridges to inject reference image features into the prompt-to-edit-image generation process. Owing to its text-to-image nature, DescriptiveEdit overcomes limitations in instruction dataset quality, integrates seamlessly with ControlNet, IP-Adapter, and other extensions, and is more scalable. Experiments on the Emu Edit benchmark show it improves editing accuracy and consistency.

Figures

Figures reproduced from arXiv: 2508.20505 by En Ci, Jian Yang, Shanyan Guan, Wei Li, Yanhao Ge, Yilin Zhang, Ying Tai, Zhenyu Zhang.

Figure 1
Figure 1. Figure 1: Our DescriptiveEdit enables description-based rather than instruction-based image editing, achieving strong performance in both global editing (Top) and local editing (Bottom). The original image is on the left, with the edit description below each edited image. Abstract Despite the progress in text-to-image generation, se￾mantic image editing remains a challenge. Inversion￾based algorithms unavoidably int… view at source ↗
Figure 2
Figure 2. Figure 2: Overview of the DescriptiveEdit framework. We introduce attention-bridge layers between two identical UNets, enabling the denoising UNet to function as a Cross-Attentive UNet. structions as in conventional instruction-based methods. In particular, DescriptiveEdit leverages pre-trained T2I mod￾els as a fixed foundational component without altering their weights, thereby avoiding any modifications to the arc… view at source ↗
Figure 3
Figure 3. Figure 3: Qualitative comparison between instruction-based and [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗
Figure 4
Figure 4. Figure 4: Qualitative comparison of global and local edits across training-based and training-free methods. [PITH_FULL_IMAGE:figures/full_fig_p007_4.png] view at source ↗
Figure 5
Figure 5. Figure 5: Effect of λI on Image Editing (Top row: autumn; Bottom row: winter). From left to right, λI increases linearly. (a)IP-Adapter (b)ControlNet (c)RealCartoon3D [PITH_FULL_IMAGE:figures/full_fig_p008_5.png] view at source ↗
Figure 6
Figure 6. Figure 6: Cross-architecture compatibility demonstrated with: (a) IP-Adapter for seasonal transformation (original [PITH_FULL_IMAGE:figures/full_fig_p008_6.png] view at source ↗
Figure 7
Figure 7. Figure 7: Showcases of applying DescriptiveEdit to Flux [ [PITH_FULL_IMAGE:figures/full_fig_p008_7.png] view at source ↗

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Reference graph

Works this paper leans on

56 extracted references · 40 canonical work pages · 1 internal anchor

  1. [1]

    Blended diffusion for text-driven editing of natural images

    Omri Avrahami, Dani Lischinski, and Ohad Fried. Blended diffusion for text-driven editing of natural images. In CVPR, pages 18208–18218, 2022. 2

  2. [2]

    In- structpix2pix: Learning to follow image editing instructions

    Tim Brooks, Aleksander Holynski, and Alexei A Efros. In- structpix2pix: Learning to follow image editing instructions. In CVPR, pages 18392–18402, 2023. 2, 4, 5, 6

  3. [3]

    Masactrl: Tuning-free mu- tual self-attention control for consistent image synthesis and editing

    Mingdeng Cao, Xintao Wang, Zhongang Qi, Ying Shan, Xi- aohu Qie, and Yinqiang Zheng. Masactrl: Tuning-free mu- tual self-attention control for consistent image synthesis and editing. In ICCV, pages 22560–22570, 2023. 2, 5, 6

  4. [4]

    Emerg- ing properties in self-supervised vision transformers

    Mathilde Caron, Hugo Touvron, Ishan Misra, Herv ´e J´egou, Julien Mairal, Piotr Bojanowski, and Armand Joulin. Emerg- ing properties in self-supervised vision transformers. In Pro- ceedings of the IEEE/CVF international conference on com- puter vision, pages 9650–9660, 2021. 5

  5. [5]

    Diffusion forcing: Next-token prediction meets full-sequence diffu- sion

    Boyuan Chen, Diego Mart ´ı Mons ´o, Yilun Du, Max Sim- chowitz, Russ Tedrake, and Vincent Sitzmann. Diffusion forcing: Next-token prediction meets full-sequence diffu- sion. NeurIPS, pages 24081–24125, 2025. 4

  6. [6]

    Pixart-alpha: Fast training of diffusion transformer for photorealistic text-to-image syn- thesis

    Junsong Chen, YU Jincheng, GE Chongjian, Lewei Yao, Enze Xie, Zhongdao Wang, James Kwok, Ping Luo, Huchuan Lu, and Zhenguo Li. Pixart-alpha: Fast training of diffusion transformer for photorealistic text-to-image syn- thesis. In ICLR, 2024. 1

  7. [7]

    Region-aware text-to-image generation via hard binding and soft refinement

    Zhennan Chen, Yajie Li, Haofan Wang, Zhibo Chen, Zhengkai Jiang, Jun Li, Qian Wang, Jian Yang, and Ying Tai. Region-aware text-to-image generation via hard binding and soft refinement. arXiv preprint arXiv:2411.06558, 2024. 2

  8. [8]

    Turboedit: Text-based image editing using few-step diffusion models, 2024

    Gilad Deutch, Rinon Gal, Daniel Garibi, Or Patashnik, and Daniel Cohen-Or. Turboedit: Text-based image editing using few-step diffusion models, 2024. 5, 6

  9. [9]

    Scaling recti- fied 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 recti- fied flow transformers for high-resolution image synthesis. In ICML, 2024. 1

  10. [10]

    Scaling recti- fied 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 recti- fied flow transformers for high-resolution image synthesis. In ICML, 2024. 2

  11. [11]

    DiT4Edit: Diffusion Transformer for Image Editing

    Kunyu Feng, Yue Ma, Bingyuan Wang, Chenyang Qi, Haozhe Chen, Qifeng Chen, and Zeyu Wang. Dit4edit: Dif- fusion transformer for image editing. CoRR:2411.03286,

  12. [12]

    Guiding instruction-based im- age editing via multimodal large language models

    Tsu-Jui Fu, Wenze Hu, Xianzhi Du, William Yang Wang, Yinfei Yang, and Zhe Gan. Guiding instruction-based im- age editing via multimodal large language models. In ICLR,

  13. [13]

    Generative adversarial nets

    Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. NeurIPS, 2014. 2

  14. [14]

    Prompt-to-prompt image editing with cross attention control

    Amir Hertz, Ron Mokady, Jay Tenenbaum, Kfir Aberman, Yael Pritch, and Daniel Cohen-Or. Prompt-to-prompt image editing with cross attention control. CoRR, 2022. 1, 2, 4

  15. [15]

    Classifier-free diffusion guidance

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

  16. [16]

    Denoising dif- fusion probabilistic models

    Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising dif- fusion probabilistic models. NeurIPS, 33:6840–6851, 2020. 1

  17. [17]

    Lora: Low-rank adaptation of large language models

    Edward J Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen- Zhu, Yuanzhi Li, Shean Wang, Lu Wang, Weizhu Chen, et al. Lora: Low-rank adaptation of large language models. ICLR, page 3, 2022. 2, 3, 4, 5

  18. [18]

    Animate anyone: Consistent and controllable image- to-video synthesis for character animation

    Li Hu. Animate anyone: Consistent and controllable image- to-video synthesis for character animation. In CVPR, pages 8153–8163, 2024. 3

  19. [19]

    Smartedit: Exploring com- plex instruction-based image editing with multimodal large language models

    Yuzhou Huang, Liangbin Xie, Xintao Wang, Ziyang Yuan, Xiaodong Cun, Yixiao Ge, Jiantao Zhou, Chao Dong, Rui Huang, Ruimao Zhang, et al. Smartedit: Exploring com- plex instruction-based image editing with multimodal large language models. In CVPR, pages 8362–8371, 2024. 2

  20. [20]

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

    Xuan Ju, Ailing Zeng, Yuxuan Bian, Shaoteng Liu, and Qiang Xu. Pnp inversion: Boosting diffusion-based editing with 3 lines of code. International Conference on Learning Representations (ICLR), 2024. 5, 6

  21. [21]

    Multi-concept customiza- tion of text-to-image diffusion

    Nupur Kumari, Bingliang Zhang, Richard Zhang, Eli Shechtman, and Jun-Yan Zhu. Multi-concept customiza- tion of text-to-image diffusion. In CVPR, pages 1931–1941,

  22. [22]

    Black Forest Labs. Flux. https://github.com/ black-forest-labs/flux, 2024. 1, 2, 8

  23. [23]

    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. NeurIPS, 37:56424–56445, 2024. 1

  24. [24]

    Brushedit: All-in-one image inpainting and editing

    Yaowei Li, Yuxuan Bian, Xuan Ju, Zhaoyang Zhang, Ying Shan, Yuexian Zou, and Qiang Xu. Brushedit: All-in-one image inpainting and editing. CoRR, abs/2412.10316, 2024. 5, 6

  25. [25]

    Flow matching for generative mod- eling

    Yaron Lipman, Ricky TQ Chen, Heli Ben-Hamu, Maximil- ian Nickel, and Matt Le. Flow matching for generative mod- eling. CoRR:2210.02747, 2022. 1

  26. [26]

    Towards understanding cross and self-attention in stable diffusion for text-guided image editing, 2024

    Bingyan Liu, Chengyu Wang, Tingfeng Cao, Kui Jia, and Jun Huang. Towards understanding cross and self-attention in stable diffusion for text-guided image editing, 2024. 5, 6

  27. [27]

    Towards understanding cross and self-attention in stable diffusion for text-guided image editing

    Bingyan Liu, Chengyu Wang, Tingfeng Cao, Kui Jia, and Jun Huang. Towards understanding cross and self-attention in stable diffusion for text-guided image editing. In CVPR, pages 7817–7826, 2024. 2

  28. [28]

    Decoupled weight decay regularization

    Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. CoRR:1711.05101, 2017. 5

  29. [29]

    Glide: Towards photorealis- tic image generation and editing with text-guided diffusion models

    Alexander Quinn Nichol, Prafulla Dhariwal, Aditya Ramesh, Pranav Shyam, Pamela Mishkin, Bob Mcgrew, Ilya Sutskever, and Mark Chen. Glide: Towards photorealis- tic image generation and editing with text-guided diffusion models. In ICML, pages 16784–16804, 2022. 2, 4

  30. [30]

    Scalable diffusion models with transformers

    William Peebles and Saining Xie. Scalable diffusion models with transformers. In CVPR, pages 4195–4205, 2023. 2

  31. [31]

    Scalable diffusion models with transformers

    William Peebles and Saining Xie. Scalable diffusion models with transformers. In ICCV, pages 4195–4205, 2023. 1

  32. [32]

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

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

  33. [33]

    Learn- ing transferable visual models from natural language super- vision

    Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learn- ing transferable visual models from natural language super- vision. In ICML, pages 8748–8763, 2021. 5

  34. [34]

    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 ICML, pages 8821– 8831, 2021. 2

  35. [35]

    Hierarchical text-conditional image gener- ation with CLIP latents

    Aditya Ramesh, Prafulla Dhariwal, Alex Nichol, Casey Chu, and Mark Chen. Hierarchical text-conditional image gener- ation with CLIP latents. CoRR, abs/2204.06125, 2022. 2

  36. [36]

    High-resolution image syn- thesis with latent diffusion models

    Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj¨orn Ommer. High-resolution image syn- thesis with latent diffusion models. In CVPR, pages 10684– 10695, 2022. 1

  37. [37]

    High-resolution image syn- thesis with latent diffusion models

    Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj¨orn Ommer. High-resolution image syn- thesis with latent diffusion models. In CVPR, pages 10684– 10695, 2022. 2, 3, 5

  38. [38]

    Semantic im- age inversion and editing using rectified stochastic differen- tial equations

    Litu Rout, Yujia Chen, Nataniel Ruiz, Constantine Carama- nis, Sanjay Shakkottai, and Wen-Sheng Chu. Semantic im- age inversion and editing using rectified stochastic differen- tial equations. CoRR:2410.10792, 2024. 1, 2

  39. [39]

    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. NeurIPS, 35:25278– 25294, 2022. 1

  40. [40]

    Emu edit: Precise image editing via recognition and genera- tion tasks

    Shelly Sheynin, Adam Polyak, Uriel Singer, Yuval Kirstain, Amit Zohar, Oron Ashual, Devi Parikh, and Yaniv Taigman. Emu edit: Precise image editing via recognition and genera- tion tasks. In CVPR, pages 8871–8879, 2024. 2, 5, 6

  41. [41]

    Deep unsupervised learning using nonequilibrium thermodynamics

    Jascha Sohl-Dickstein, Eric Weiss, Niru Maheswaranathan, and Surya Ganguli. Deep unsupervised learning using nonequilibrium thermodynamics. In ICML, pages 2256– 2265, 2015. 2

  42. [42]

    Postedit: Posterior sampling for efficient zero-shot image editing

    Feng Tian, Yixuan Li, Yichao Yan, Shanyan Guan, Yanhao Ge, and Xiaokang Yang. Postedit: Posterior sampling for efficient zero-shot image editing. CoRR, 2024. 1

  43. [43]

    Visual autoregressive modeling: Scalable image gen- eration via next-scale prediction.NeurIPS, 37:84839–84865,

    Keyu Tian, Yi Jiang, Zehuan Yuan, Bingyue Peng, and Liwei Wang. Visual autoregressive modeling: Scalable image gen- eration via next-scale prediction.NeurIPS, 37:84839–84865,

  44. [44]

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

    Narek Tumanyan, Michal Geyer, Shai Bagon, and Tali Dekel. Plug-and-play diffusion features for text-driven image-to-image translation. In CVPR, pages 1921–1930,

  45. [45]

    Taming rectified flow for inversion and editing

    Jiangshan Wang, Junfu Pu, Zhongang Qi, Jiayi Guo, Yue Ma, Nisha Huang, Yuxin Chen, Xiu Li, and Ying Shan. Taming rectified flow for inversion and editing. CoRR:2411.04746,

  46. [46]

    Qwen2-vl: Enhancing vision-language model’s perception of the world at any resolution.CoRR:2409.12191,

    Peng Wang, Shuai Bai, Sinan Tan, Shijie Wang, Zhihao Fan, Jinze Bai, Keqin Chen, Xuejing Liu, Jialin Wang, Wenbin Ge, et al. Qwen2-vl: Enhancing vision-language model’s perception of the world at any resolution.CoRR:2409.12191,

  47. [47]

    Imagen editor and editbench: Advancing and evaluating text-guided image inpainting

    Su Wang, Chitwan Saharia, Ceslee Montgomery, Jordi Pont- Tuset, Shai Noy, Stefano Pellegrini, Yasumasa Onoe, Sarah Laszlo, David J Fleet, Radu Soricut, et al. Imagen editor and editbench: Advancing and evaluating text-guided image inpainting. In CVPR, pages 18359–18369, 2023. 2

  48. [48]

    Bovik, H.R

    Zhou 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 , 13(4): 600–612, 2004. 5

  49. [49]

    Omniedit: Building im- age editing generalist models through specialist supervision

    Cong Wei, Zheyang Xiong, Weiming Ren, Xinrun Du, Ge Zhang, and Wenhu Chen. Omniedit: Building im- age editing generalist models through specialist supervision. CoRR:2411.07199, 2024. 2

  50. [50]

    Ip- adapter: Text compatible image prompt adapter for text-to- image diffusion models

    Hu Ye, Jun Zhang, Sibo Liu, Xiao Han, and Wei Yang. Ip- adapter: Text compatible image prompt adapter for text-to- image diffusion models. CoRR:2308.06721, 2023. 2, 3, 8

  51. [51]

    Anyedit: Mastering unified high-quality image editing for any idea

    Qifan Yu, Wei Chow, Zhongqi Yue, Kaihang Pan, Yang Wu, Xiaoyang Wan, Juncheng Li, Siliang Tang, Hanwang Zhang, and Yueting Zhuang. Anyedit: Mastering unified high-quality image editing for any idea. CoRR, 2024. 2, 5, 6

  52. [52]

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

    Kai Zhang, Lingbo Mo, Wenhu Chen, Huan Sun, and Yu Su. Magicbrush: A manually annotated dataset for instruction- guided image editing. NeurIPS, pages 31428–31449, 2023. 2, 5, 6

  53. [53]

    Adding conditional control to text-to-image diffusion models

    Lvmin Zhang, Anyi Rao, and Maneesh Agrawala. Adding conditional control to text-to-image diffusion models. In ICCV, pages 3836–3847, 2023. 2, 4, 8

  54. [54]

    The unreasonable effectiveness of deep features as a perceptual metric

    Richard Zhang, Phillip Isola, Alexei A Efros, Eli Shechtman, and Oliver Wang. The unreasonable effectiveness of deep features as a perceptual metric. In CVPR, pages 586–595,

  55. [55]

    Ultraedit: Instruction-based fine-grained image editing at scale

    Haozhe Zhao, Xiaojian Shawn Ma, Liang Chen, Shuzheng Si, Rujie Wu, Kaikai An, Peiyu Yu, Minjia Zhang, Qing Li, and Baobao Chang. Ultraedit: Instruction-based fine-grained image editing at scale. NeurIPS, pages 3058–3093, 2025. 2, 5

  56. [56]

    Kv-edit: Training-free image editing for precise background preservation

    Tianrui Zhu, Shiyi Zhang, Jiawei Shao, and Yansong Tang. Kv-edit: Training-free image editing for precise background preservation. CoRR:2502.17363, 2025. 1

This paper was first reviewed by deepseek-v4-flash on August 5, 2026.