REVIEW 4 major objections 5 minor 38 references
Improving Diffusion-Based Image Editing Faithfulness via Guidance and Scheduling
T0 review · 4 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read A training-free guidance term that compares the editing path to a Gaussian-blurred copy of transferred attention, plus a timestep schedule, shifts the faithfulness–editability trade-off of diffusion editing so that unchanged content…
desk verdict A useful training-free plug-in that likely improves faithfulness, but the scheduling formula in Eq. 11 is reversed relative to the text, so the method as written is not reproducible without that fix. 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 central object is the faithfulness guidance term in Eq.(9)–(10), which adds $w_{fg}(\epsilon_\theta(z_t^t,c_t,I)-\epsilon_\theta(z_t^t,c_t,I'))$ to the editing path's noise prediction, where $I$ is the transferred information (attention maps in Prompt-to-Prompt and InfEdit, key/value features in MasaCtrl, shared-attention features in StyleAligned) and $I' = \text{Perturb}(I)$ is a Gaussian-blurred copy meant to approximate an unconditional reference. The second component is the scheduling rule of Eq.(11), $w_d^t = w_d \log(1+k(T-t))/\log(1+k)$ and $w_i^t = w_i \log(1+kt)/\log(1+k)$, which makes one guidance weight decrease and the other increase across timesteps so that early denoising emphasizes one guidance direction and later denoising the other, chosen according to whether the transferred information encodes layout (emphasize faithfulness guidance early) or fine detail (emphasize it late).
What would settle it
For a fixed editing example, compute the cosine similarity between the FG direction $\epsilon_\theta(z_t,c_t,I)-\epsilon_\theta(z_t,c_t,I')$ and the true unconditional direction $\epsilon_\theta(z_t,c_t,I)-\epsilon_\theta(z_t,c_t,\emptyset)$ where the transferred information is omitted entirely; if the similarity is near zero across timesteps, the blurred reference is not acting as an unconditional state and the proposed mechanism fails.
Extended reading notes
Core claim
The paper's central claim is that faithfulness in diffusion-based real image editing can be improved by treating the information an editing method transfers from the reconstruction path as a condition, creating a second reference by Gaussian-blurring that information, and adding a classifier-free-guidance-style term that pushes the editing path toward the unperturbed transfer. On PIE-Bench with Prompt-to-Prompt at its default injection timestep, FGS lowers the structure distance in the unedited region from 11.00 to 8.35 while the CLIP editability score changes only from 22.76 to 22.41—a better operating point than raising the injection timestep, which reaches 8.91 and 22.28. The same plugin improves content and style preservation when applied to MasaCtrl, StyleAligned, and InfEdit, and the paper attributes the joint benefit to a scheduling rule that keeps the faithfulness guidance and the editability guidance from fighting each other over the denoising trajectory.
Load-bearing premise
The load-bearing premise is that Gaussian-blurring the attention maps or key/value features that a given editing method transfers from the reconstruction path removes the conditioning content, so the blurred output can stand in as an 'unconditional' reference for CFG-style guidance; if blur only degrades the transferred information without truly removing its conditioning, the faithfulness guidance term is an ad hoc image modifier rather than a principled mechanism.
Editorial extensions
If this is right
- FGS can be dropped into existing editing pipelines without training; the reported overhead is about 3 GB extra memory and roughly 4 seconds more per image on a single RTX 4090, while improving faithfulness.
- On P2P with PIE-Bench, FGS at $\tau=0.5$ achieves lower structure distance than raising $\tau$ to 0.6 (unedited SD 8.35 vs 8.91) while keeping the CLIP score higher (22.41 vs 22.28), so it supplies a better faithfulness–editability operating point than the hyperparameter it would otherwise have to tune.
- The method extends beyond P2P: content and style preservation improve for MasaCtrl (non-rigid editing), StyleAligned (style transfer), and InfEdit (few-step distilled models).
- The scheduling principle applies whenever the two guidance directions are misaligned; the paper shows that CFG and FG directions have consistently low cosine similarity across timesteps, and the log schedule is what recovers the joint benefit.
Reading between the lines
- Not in the paper: the same 'perturb the transferred condition' trick could be applied to other conditional inputs in editing, such as depth, sketch, or identity embeddings, using domain-appropriate perturbations instead of Gaussian blur.
- Not in the paper: the claim that blurring produces an unconditional reference is testable directly by measuring the cosine similarity between the FG direction and a direction computed with the condition fully removed; if they diverge, the mechanism would be reinterpreted as a sharpening operator rather than a true CFG analogue.
- Not in the paper: the scheduling rule has a single parameter $k$ controlling the transition sharpness, so a natural extension is to learn or adapt $k$ per image based on a faithfulness/editing surrogate during inference.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Faithfulness Guidance and Scheduling (FGS), a training-free plugin for diffusion-based image editing that aims to improve faithfulness (preservation of unedited content) while minimizing the loss of editability. FGS adds a CFG-like guidance term that compares the editing-path prediction conditioned on original transferred information I with a version conditioned on a perturbed I' (Gaussian blur), and combines this with a schedule that varies the FG and CFG weights across denoising steps. The method is evaluated on PIE-Bench with P2P as the main baseline, showing lower structure distance (SD) at a small CLIP score cost, and qualitative results are shown for MasaCtrl, StyleAligned, and InfEdit. The paper includes ablations on the perturbation type and hyperparameters.
Significance. If the central claim holds, FGS offers a simple, training-free way to shift the faithfulness–editability trade-off in real-image editing, applicable to multiple editing frameworks. The idea of treating perturbed transferred information as an unconditional reference is an interesting extension of recent attention-perturbation guidance methods (SEG, PAG). The paper includes quantitative and qualitative results, plus ablations of the perturbation choice and scheduling parameters. However, the current evidence is weakened by the lack of statistical rigor and by an internal inconsistency in the scheduling formulation.
major comments (4)
- [Sec. 3.3, Eq. (11)] The temporal behavior of w_d and w_i is reversed relative to the text. Eq. (11) defines w_d^t = w_d log(1+k(T-t))/log(1+k) and w_i^t = w_i log(1+kt)/log(1+k). With the denoising loop t = T, T-1, ..., 1 in Algorithm 1, w_d^t is 0 at t=T and increases to w_d at t=1, so it emphasizes late timesteps; w_i^t is large at t=T and decays, so it emphasizes early timesteps. This directly contradicts the statements that "w_d decreases monotonically over the timesteps, emphasizing the early timesteps" and "w_i increases monotonically, emphasizing the later timesteps." Since the scheduling is a core component of the proposed method and the assignment of w_fg and w_cfg to w_d and w_i is method-dependent, this inconsistency makes the described method ambiguous and not uniquely reproducible. The authors must correct either the equations or the text, and clarify the actual schedule used to produce Table 1.
- [Table 1, Sec. 4.1] The central quantitative claim that FGS improves the faithfulness–editability Pareto trade-off is supported by no error bars, confidence intervals, or significance tests. The differences in CLIP score between P2P(0.5)+FGS and P2P(0.6) are 25.34 vs 25.33 (whole image) and 22.41 vs 22.28 (edited region), which are likely within run-to-run variation. Consequently, the claim that FGS maintains editability while improving faithfulness is not statistically established. The authors should provide repeated-run statistics (means and standard deviations over at least several seeds) or another form of significance analysis for both SD and CLIP.
- [Sec. 4.4 (Fig. 6) and Table 1] The hyperparameters k, sigma, and w_fg are selected via ablations on the same PIE-Bench benchmark used to report the final numbers. This tuning-on-the-test-set procedure risks overfitting; the reported gains may not generalize to other images or editing methods. The authors should use a held-out validation split (or cross-validation) for hyperparameter selection and then evaluate on a separate test set, or at least explicitly acknowledge and justify the absence of such a split.
- [Sec. 3.2, Eq. (9)] The method assumes that applying Gaussian blur to the transferred information I produces an "unconditional" reference for CFG-style guidance. The paper does not provide evidence that blurring attention maps (P2P) or key/value features (MasaCtrl) removes the conditioning content of the input image. If the perturbation merely degrades the information without eliminating its content, the FG term (epsilon_theta(z_t,c_t,I) - epsilon_theta(z_t,c_t,I')) may act as an unprincipled image modifier rather than a faithfulness amplifier. The authors should verify this assumption, e.g., by visualizing the perturbed attention maps or measuring the effect of the perturbation on the network's predictions, and discuss whether the mechanism is indeed one of approximating an unconditional state.
minor comments (5)
- [Sec. 4.4] Typo: "several several hyperparameters" should be "several hyperparameters."
- [Sec. 4.2] Typo: "IIn the third row" should be "In the third row."
- [Supplementary Table 4] The reference for NMG appears to be labeled [21] in the table, but NMG is reference [6] (Noise Map Guidance); please correct this citation.
- [Sec. 3.3 and Supplementary Sec. C] The paper states that FGS "does not require additional time-consuming steps" but the supplementary reports an increase of about 4 seconds per image and 3GB memory; please reconcile these statements.
- [Secs. 4.2, 4.3] For MasaCtrl and StyleAligned, only qualitative results are provided; consider adding quantitative evaluation on PIE-Bench (or another benchmark) to support the claim of compatibility across editing methods.
Circularity Check
FGS's headline Pareto gain is partly an in-sample tuned result; no equation-level circularity, but hyperparameters were selected on the same PIE-Bench metrics used for the claim.
-
fitted input called prediction
[Section 4.4 (Hyperparameter selection), applied to Table 1 in Section 4.1]
"To systematically analyze the impact of these hyperparameters, we conducted ablation studies by varying each parameter while keeping the others fixed at their default values: k=100, σ=5, and w_fg=10."
The FGS row in Table 1 (P2P(0.5)+FGS: SD 19.55 / CLIP 25.34) is produced with k=100, σ=5, w_fg=10, exactly the values selected by the ablation in Sec. 4.4 on PIE-Bench. The same PIE-Bench SD and CLIP metrics used for that selection are then reported as evidence for the load-bearing claim that FGS 'achieves greater faithfulness with a minor reduction in editability than simply increasing τ from 0.5 to 0.6.' Because the hyperparameters were chosen to optimize these very metrics on this benchmark, the reported gain is a tuned, in-sample result rather than a prediction from a fixed a priori method; the improvement is not forced by the equations but is partly an artifact of the selection procedure.
full rationale
The FGS construction (Eqs. 8-12) is a heuristic guidance perturbation plus a logarithmic schedule; no equation makes the reported SD/CLIP gain true by construction, so there is no definitional circularity at the equation level. The load-bearing justification that I' = PERTURB(I) is an unconditional reference is imported from PAG/SEG by analogy and not re-derived for editing-path transferred information; this is an unsupported assumption, but it is not a self-referential reduction of the paper's own output to its input. The main circularity-adjacent issue is empirical: the headline Pareto claim in Sec. 4.1 uses FGS hyperparameters (k, σ, w_fg) chosen by ablating on PIE-Bench in Sec. 4.4 with the same SD/CLIP metrics that Table 1 reports, so the comparison to P2P(0.6) is an in-sample tuned result rather than an independent prediction. The self-citation to NMG (Ref. [6], same first author) appears in the main P2P/MasaCtrl pipeline, but the with/without-FGS comparison holds NMG constant and the supplementary SPDInv/InfEdit results do not rely on it, so the self-citation is not load-bearing. The paper's own Limitations section (Supplementary C) concedes that 'enhancing the transferred information can degrade the editing results if the transferred information is not well disentangled,' which confirms that FG's benefit is conditional and empirical rather than a first-principles guarantee; this does not add circularity but is weighed as evidence that the central claim rests on benchmark results, not derivation. Separately, there is a reproducibility concern that is not circularity: under Algorithm 1's loop t=T,...,1, Eq. 11 gives w_d^T=0 and w_d^1≈w_d, so w_d is large at the end of denoising while the text says it 'emphasizes the early timesteps'; this apparent reversal does not affect the circularity score. Overall, the central method still has independent content and is validated on multiple editing backbones, but the headline quantitative superiority is partly a selected result, warranting score 4.
Assumptions & free parameters
free parameters (4)
- FG scale w_fg =
10 for P2P/MasaCtrl, 3 for StyleAligned, 2.3 for InfEdit
- Scheduling curvature k =
100
- Gaussian blur sigma =
5
- Base scheduled scales w_d and w_i =
w_d/w_fg base 10 for P2P; w_i base not reported
assumptions (3)
- domain assumption Gaussian-blurred transferred information I' approximates an unconditional output for CFG-like guidance in the editing path.
- domain assumption Diffusion models generate images coarse-to-fine, so emphasizing faithfulness guidance at early timesteps for layout information and later timesteps for style information is beneficial.
- domain assumption PIE-Bench masks and SD/CLIP metrics adequately capture faithfulness and editability for real image editing.
Cite this review
Pith. "Pith review of Improving Diffusion-Based Image Editing Faithfulness via Guidance and Scheduling." pith.science (2026). https://pith.science/paper/XWA67Q77
@misc{pith2026250621045,
author = {Pith},
title = {Pith review of: Improving Diffusion-Based Image Editing Faithfulness via Guidance and Scheduling},
year = {2026},
howpublished = {\url{https://pith.science/paper/XWA67Q77}},
note = {Machine review of arXiv:2506.21045}
}
read the original abstract
Text-guided diffusion models have become essential for high-quality image synthesis, enabling dynamic image editing. In image editing, two crucial aspects are editability, which determines the extent of modification, and faithfulness, which reflects how well unaltered elements are preserved. However, achieving optimal results is challenging because of the inherent trade-off between editability and faithfulness. To address this, we propose Faithfulness Guidance and Scheduling (FGS), which enhances faithfulness with minimal impact on editability. FGS incorporates faithfulness guidance to strengthen the preservation of input image information and introduces a scheduling strategy to resolve misalignment between editability and faithfulness. Experimental results demonstrate that FGS achieves superior faithfulness while maintaining editability. Moreover, its compatibility with various editing methods enables precise, high-quality image edits across diverse tasks.
Figures
Figures from the paper (6 more)
Reference graph
Works this paper leans on
-
[1]
Donghoon Ahn, Hyoungwon Cho, Jaewon Min, Wooseok Jang, Jungwoo Kim, SeonHwa Kim, Hyun Hee Park, Ky- ong Hwan Jin, and Seungryong Kim. Self-rectifying dif- fusion sampling with perturbed-attention guidance.arXiv preprint arXiv:2403.17377, 2024. 3, 4, 8
arXiv 2024
-
[2]
Cross-image attention for zero- shot appearance transfer
Yuval Alaluf, Daniel Garibi, Or Patashnik, Hadar Averbuch- Elor, and Daniel Cohen-Or. Cross-image attention for zero- shot appearance transfer. InACM SIGGRAPH 2024 Confer- ence Papers, pages 1–12, 2024. 1
work page 2024
-
[3]
In- structpix2pix: Learning to follow image editing instructions
Tim Brooks, Aleksander Holynski, and Alexei A Efros. In- structpix2pix: Learning to follow image editing instructions. InProceedings of the IEEE/CVF conference on computer vi- sion and pattern recognition, pages 18392–18402, 2023. 12
work page 2023
-
[4]
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. InProceedings of the IEEE/CVF International Con- ference on Computer Vision, pages 22560–22570, 2023. 1, 2, 4, 7, 11
work page 2023
-
[5]
Pixart-α: Fast training of dif- fusion transformer for photorealistic text-to-image synthesis
Junsong Chen, YU Jincheng, GE Chongjian, Lewei Yao, Enze Xie, Zhongdao Wang, James Kwok, Ping Luo, Huchuan Lu, and Zhenguo Li. Pixart-α: Fast training of dif- fusion transformer for photorealistic text-to-image synthesis. InThe Twelfth International Conference on Learning Repre- sentations, 2024. 1
work page 2024
-
[6]
Noise map guidance: Inversion with spatial context for real image editing
Hansam Cho, Jonghyun Lee, Seoung Bum Kim, Tae-Hyun Oh, and Yonghyun Jeong. Noise map guidance: Inversion with spatial context for real image editing. InThe Twelfth In- ternational Conference on Learning Representations, 2024. 2, 5, 11
work page 2024
-
[7]
Ilvr: Conditioning method for denoising diffusion probabilistic models
Jooyoung Choi, Sungwon Kim, Yonghyun Jeong, Youngjune Gwon, and Sungroh Yoon. Ilvr: Conditioning method for denoising diffusion probabilistic models. In2021 IEEE/CVF International Conference on Computer Vision (ICCV), pages 14347–14356. IEEE, 2021. 5
work page 2021
-
[8]
Perception pri- oritized training of diffusion models
Jooyoung Choi, Jungbeom Lee, Chaehun Shin, Sungwon Kim, Hyunwoo Kim, and Sungroh Yoon. Perception pri- oritized training of diffusion models. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 11472–11481, 2022. 5
work page 2022
Show all 38 references
-
[9]
Diffusion models beat gans on image synthesis.Advances in neural informa- tion processing systems, 34:8780–8794, 2021
Prafulla Dhariwal and Alexander Nichol. Diffusion models beat gans on image synthesis.Advances in neural informa- tion processing systems, 34:8780–8794, 2021. 2
2021
-
[10]
Nice: Non-linear independent components estimation.arXiv preprint arXiv:1410.8516, 2014
Laurent Dinh, David Krueger, and Yoshua Bengio. Nice: Non-linear independent components estimation.arXiv preprint arXiv:1410.8516, 2014. 2
2014 arXiv
-
[11]
Density estimation using real nvp.arXiv preprint arXiv:1605.08803, 2016
Laurent Dinh, Jascha Sohl-Dickstein, and Samy Ben- gio. Density estimation using real nvp.arXiv preprint arXiv:1605.08803, 2016. 2
2016 arXiv
-
[12]
Instructdiffusion: A generalist modeling inter- face for vision tasks
Zigang Geng, Binxin Yang, Tiankai Hang, Chen Li, Shuyang Gu, Ting Zhang, Jianmin Bao, Zheng Zhang, Houqiang Li, Han Hu, et al. Instructdiffusion: A generalist modeling inter- face for vision tasks. InProceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recog...
2024
-
[13]
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. InThe Eleventh Inter- national Conference on Learning Representations, 2023. 1, 2, 4, 5, 11, 12
2023
-
[14]
Style aligned image generation via shared atten- tion
Amir Hertz, Andrey V oynov, Shlomi Fruchter, and Daniel Cohen-Or. Style aligned image generation via shared atten- tion. InProceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition, pages 4775–4785,
-
[15]
Clipscore: A reference-free evaluation met- ric for image captioning
Jack Hessel, Ari Holtzman, Maxwell Forbes, Ronan Le Bras, and Yejin Choi. Clipscore: A reference-free evaluation met- ric for image captioning. InProceedings of the 2021 Confer- ence on Empirical Methods in Natural Language Processing, pages 7514–7528, 2021. 2, 6
2021
-
[16]
Classifier-free diffusion guidance
Jonathan Ho and Tim Salimans. Classifier-free diffusion guidance. InNeurIPS 2021 Workshop on Deep Generative Models and Downstream Applications, 2021. 3, 4
2021
-
[17]
Smoothed energy guidance: Guiding dif- fusion models with reduced energy curvature of attention
Susung Hong. Smoothed energy guidance: Guiding dif- fusion models with reduced energy curvature of attention. arXiv preprint arXiv:2408.00760, 2024. 3, 4
2024 arXiv
-
[18]
Improving sample quality of diffusion models us- ing self-attention guidance
Susung Hong, Gyuseong Lee, Wooseok Jang, and Seungry- ong Kim. Improving sample quality of diffusion models us- ing self-attention guidance. InProceedings of the IEEE/CVF International Conference on Computer Vision, pages 7462– 7471, 2023. 3
2023
-
[19]
Direct inversion: Boosting diffusion-based edit- ing with 3 lines of code
Xuan Ju, Ailing Zeng, Yuxuan Bian, Shaoteng Liu, and Qiang Xu. Direct inversion: Boosting diffusion-based edit- ing with 3 lines of code. InThe Twelfth International Con- ference on Learning Representations, 2024. 2, 5
2024
-
[20]
Guiding a dif- fusion model with a bad version of itself.arXiv preprint arXiv:2406.02507, 2024
Tero Karras, Miika Aittala, Tuomas Kynk ¨a¨anniemi, Jaakko Lehtinen, Timo Aila, and Samuli Laine. Guiding a dif- fusion model with a bad version of itself.arXiv preprint arXiv:2406.02507, 2024. 3
2024 arXiv
-
[21]
Source prompt disentangled inversion for boosting image editability with diffusion models
Ruibin Li, Ruihuang Li, Song Guo, and Lei Zhang. Source prompt disentangled inversion for boosting image editability with diffusion models. InEuropean Conference on Com- puter Vision, pages 404–421. Springer, 2024. 11, 12
2024
-
[22]
Latent consistency models: Synthesizing high- resolution images with few-step inference.arXiv preprint arXiv:2310.04378, 2023
Simian Luo, Yiqin Tan, Longbo Huang, Jian Li, and Hang Zhao. Latent consistency models: Synthesizing high- resolution images with few-step inference.arXiv preprint arXiv:2310.04378, 2023. 2, 7, 11
2023 arXiv
-
[23]
Null-text inversion for editing real im- ages using guided diffusion models
Ron Mokady, Amir Hertz, Kfir Aberman, Yael Pritch, and Daniel Cohen-Or. Null-text inversion for editing real im- ages using guided diffusion models. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 6038–6047, 2023. 2, 5
2023
-
[24]
Effective real image editing with accelerated iter- ative diffusion inversion
Zhihong Pan, Riccardo Gherardi, Xiufeng Xie, and Stephen Huang. Effective real image editing with accelerated iter- ative diffusion inversion. InProceedings of the IEEE/CVF International Conference on Computer Vision, pages 15912– 15921, 2023. 2
2023
-
[25]
Zero-shot image-to-image translation
Gaurav Parmar, Krishna Kumar Singh, Richard Zhang, Yijun Li, Jingwan Lu, and Jun-Yan Zhu. Zero-shot image-to-image translation. InACM SIGGRAPH 2023 Conference Proceed- ings, pages 1–11, 2023. 1, 2
2023
-
[26]
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 9 Robin Rombach. Sdxl: Improving latent diffusion models for high-resolution image synthesis. InThe Twelfth Inter- national Conference on Learning Representations, 2024. 1, 11
2024
-
[27]
Learning transferable visual models from natural language supervi- sion
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 supervi- sion. InInternational conference on machine learning, p...
2021
-
[28]
Hierarchical text-conditional image gener- ation with clip latents.arXiv preprint arXiv:2204.06125, 1 (2):3, 2022
Aditya Ramesh, Prafulla Dhariwal, Alex Nichol, Casey Chu, and Mark Chen. Hierarchical text-conditional image gener- ation with clip latents.arXiv preprint arXiv:2204.06125, 1 (2):3, 2022. 1
2022 arXiv
-
[29]
High-resolution image synthesis with latent diffusion models
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj ¨orn Ommer. High-resolution image synthesis with latent diffusion models. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 10684–10695, 2022. 1, 3, 11
2022
-
[30]
No training, no problem: Rethinking classifier-free guidance for diffusion models.arXiv preprint arXiv:2407.02687, 2024
Seyedmorteza Sadat, Manuel Kansy, Otmar Hilliges, and Romann M Weber. No training, no problem: Rethinking classifier-free guidance for diffusion models.arXiv preprint arXiv:2407.02687, 2024. 3
2024 arXiv
-
[31]
Denois- ing diffusion implicit models
Jiaming Song, Chenlin Meng, and Stefano Ermon. Denois- ing diffusion implicit models. InInternational Conference on Learning Representations, 2021. 1, 2, 4, 5
2021
-
[32]
Consistency models
Yang Song, Prafulla Dhariwal, Mark Chen, and Ilya Sutskever. Consistency models. InInternational Conference on Machine Learning, pages 32211–32252. PMLR, 2023. 2
2023
-
[33]
Splicing vit features for semantic appearance transfer
Narek Tumanyan, Omer Bar-Tal, Shai Bagon, and Tali Dekel. Splicing vit features for semantic appearance transfer. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 10748–10757, 2022. 2, 5
2022
-
[34]
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. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 1921–1930, 2023. 1, 2
1921
-
[35]
Edict: Exact diffusion inversion via coupled transformations
Bram Wallace, Akash Gokul, and Nikhil Naik. Edict: Exact diffusion inversion via coupled transformations. InProceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 22532–22541, 2023. 2
2023
-
[36]
Inversion-free image editing with language-guided dif- fusion models
Sihan Xu, Yidong Huang, Jiayi Pan, Ziqiao Ma, and Joyce Chai. Inversion-free image editing with language-guided dif- fusion models. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 9452– 9461, 2024. 1, 2, 7, 11, 12
2024
-
[37]
Exact diffusion inversion via bidirectional integration ap- proximation
Guoqiang Zhang, Jonathan P Lewis, and W Bastiaan Kleijn. Exact diffusion inversion via bidirectional integration ap- proximation. InEuropean Conference on Computer Vision, pages 19–36. Springer, 2025. 2
2025
-
[38]
a light brown bear sitting stand on the ground
Kai Zhang, Lingbo Mo, Wenhu Chen, Huan Sun, and Yu Su. Magicbrush: A manually annotated dataset for instruction- guided image editing.Advances in Neural Information Pro- cessing Systems, 36:31428–31449, 2023. 12 10 Improving Diffusion-Based Image Editing Faithfulness via Guida...
2023
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.