Pith. sign in

REVIEW 3 major objections 4 minor 50 references

REED-VAE: RE-Encode Decode Training for Iterative Image Editing with Diffusion Models

T0 review · 3 major / 4 minor · reviewed 2026-08-16 · deepseek-v4-flash

Pith's one-line read The paper claims that training a VAE decoder on repeated encode-decode cycles prevents the artifact buildup that blocks iterative, multi-method image editing with diffusion models.

desk verdict Novel decoder-only VAE fine-tuning that clearly fixes encode-decode artifact accumulation, but the headline editing metrics compare to x1 instead of x0, which likely inflates the quantitative gains. read the letter →

arxiv 2504.18989 v1 pith:HAIR26TH submitted 2025-04-26 cs.GR cs.CVcs.LG

classification cs.GRcs.CVcs.LG
keywords iterativeimageeditinglatentdiffusionmodelsvariationalautoencoderVAEdecoderfine-tuningqualitypreservationmulti-methodencode-decodecyclesREEDtraining
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 identifies the variational autoencoder (VAE) as the bottleneck that prevents diffusion models from editing the same image repeatedly: every round trip between pixel space and latent space loses fidelity, and after five to twenty-five operations the accumulated noise destroys the image. It proposes REED (re-encode decode) training, which fine-tunes only the VAE decoder on many unrolled encode-decode cycles so that reconstruction error no longer compounds. The training uses three components: iterative unrolling with a horizon k, dynamic incrementation that raises k as validation loss plateaus, and a first-step loss that measures error against the one-step reconstruction rather than the original image. If the claim holds, any Stable-Diffusion-based editing model can swap in the REED decoder and support long chains of mixed edits—text-guided, mask-guided, example-guided, and conventional pixel-space operations—without staying trapped in latent space. The paper validates the claim across five editing frameworks and reports consistent metric improvements that grow with the number of iterations.

What carries the argument

The load-bearing object is the REED training objective, Eq. (2): $L_{\text{train}} = L_{\text{MSE}}(x_1, x_k) + \alpha L_{\text{LPIPS}}(x_1, x_k) + \beta D_{\text{KL}}(z_k, \mathcal{N}(0, I))$, evaluated after k unrolled encode-decode steps. The scheme starts at k=4 and increments k when the validation loss plateaus (up to 20), a curriculum that prevents divergence at high horizons. The first-step loss anchors the target to x_1 rather than x_0, so the model is asked only to match the vanilla VAE's one-step reconstruction while improving stability over longer chains. Only the decoder is fine-tuned; the encoder stays frozen so latent embeddings remain compatible with existing diffusion models. This combination is what lets a single swapped decoder improve artifact accumulation across many editing models.

What would settle it

Run 25 edit iterations with a pipeline in which each edit changes the image independently of VAE error—for example, applying heavy JPEG recompression or a strong conventional filter between encode-decode cycles. If REED-VAE's advantage over the vanilla decoder vanishes or reverses under these conditions, then its robustness is specific to pure reconstruction error and does not transfer to arbitrary multi-method edits, which is the paper's stated goal.

Watch

Extended reading notes

Core claim

The paper's central claim is that the image degradation seen when editing the same image repeatedly is caused mainly by the VAE's decoder drifting under repeated use, and that this drift can be removed by training the decoder to reconstruct after k full encode-decode cycles rather than after one. REED training unrolls the loop D(E(x_i)) = x_{i+1} for i = 0,...,k-1, computes a perceptual plus MSE loss between the first reconstruction x_1 and the final output x_k, and adds a KL term on the final latent. The scheme starts at k=4 and increments k when validation loss plateaus, up to 20, a curriculum that prevents divergence at high horizons. Only the decoder is fine-tuned; the encoder stays frozen so the latent embeddings remain consistent with the diffusion model's training distribution. Across InstructPix2Pix, MagicBrush, DiffEdit, Paint by Example, SD Inpainting, and NTI-based inversion, swapping in the REED decoder consistently reduces quality degradation at 5, 15, and 25 iterations, with the largest gains at the highest iteration counts.

Load-bearing premise

The load-bearing premise is that training on repeated encode-decode cycles of unedited images transfers to real iterative editing, where edits and inversion routines inject their own errors that decoder-only training cannot remove.

Editorial extensions

If this is right

  • Replacing the vanilla SD2.1 decoder with the REED decoder reduces MSE, LPIPS, SSIM, FID, and PSNR degradation at 5, 15, and 25 iterations across InstructPix2Pix, MagicBrush, DiffEdit, Paint by Example, and SD Inpainting, with gains largest at high iteration counts.
  • Users can interleave diffusion-based edits with conventional pixel-space operations such as saturation or sharpening in the same session, because each operation starts from a cleanly reconstructed image instead of a progressively corrupted one.
  • Editing models that rely on inversion, such as NTI-based Prompt-to-Prompt, still improve when paired with REED, although inversion itself contributes noise that the decoder alone cannot fully remove.
  • REED improves editability in the sense that the edited image stays close to the intended target over more iterations, increasing the likelihood that later edit operations succeed.
  • The ablation results imply each component matters: iterative training needs k larger than 2, the first-step loss helps convergence, and dynamic incrementation gives the largest gains at 15 to 25 iterations.

Reading between the lines

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

  • If the decoder-only design truly keeps the encoder's latent distribution intact, the same REED recipe should transfer to other latent diffusion models, including 16-channel VAE models, whose decoders could be trained with the same objective; the paper's supplementary experiments suggest those models also accumulate degradation.
  • The frequency-domain evidence points to a more specific failure mode: repeated VAE cycles both blur high frequencies and inject new high-frequency artifacts. A REED-style objective could be paired with an explicit spectral regularizer to control which frequencies drift, a testable extension the paper does not pursue.
  • The first-step-loss principle—measure iterative training against the one-step reconstruction rather than the ground truth—may generalize beyond diffusion to any lossy compression loop where the goal is stability of repeated round trips rather than absolute fidelity.
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 / 4 minor

Summary. The paper introduces REED-VAE, a fine-tuning scheme for the decoder of a Stable Diffusion VAE, intended to reduce the accumulation of artifacts and noise when images are repeatedly encoded and decoded during multi-step, multi-method iterative image editing. The training objective combines iterative encode-decode rollouts, a dynamic incrementation curriculum on the number of iterations k, and a first-step loss comparing the final rollout output xk to the first reconstruction x1. The authors evaluate the approach by swapping the vanilla SD2.1 decoder for their fine-tuned decoder across InstructPix2Pix, MagicBrush, DiffEdit, Paint-by-Example, and SD Inpainting, reporting qualitative and quantitative improvements in MSE, LPIPS, SSIM, FID, and PSNR at 5, 15, and 25 iterations. They also present ablations on the iterative training, first-step loss, and dynamic incrementation components, and qualitative comparisons with Null-Text Inversion. The paper frames multi-method iterative image editing as a new problem setting and proposes the REED-trained decoder as a drop-in solution.

Significance. If the central claim holds, the contribution is practically useful: it provides a simple, architecture-compatible way to extend diffusion-based editing pipelines to long or interleaved editing sessions without changing the diffusion model. The problem framing is timely, and the qualitative evidence (Figures 1, 2, and the supplementary sequences) is visually compelling. The paper ships an apparently reproducible recipe (public code and models), and the supplementary comparison with SDXL, SD3, and Flux helps contextualize the relevance of the SD2.1-focused experiments. The main uncertainties are empirical: the editing metric protocol compares against a self-produced first edit rather than the source, and the training implementation only backpropagates through the final iteration, which weakens the mechanistic story told in Algorithm 1.

major comments (3)
  1. [Supplementary Material, 'Experiments and comparisons'] The central claim is that REED-VAE preserves image quality across iterative editing, but Table 1 computes editing metrics between the image at iterations 5/15/25 and x1, the first edited output, not against the source image x0 as the supplement states. This is load-bearing: x1 is itself produced by the decoder being evaluated, so a smoother, more conservative, or semantically weaker first edit will make later outputs closer to x1 even if they drift arbitrarily far from the original image. The main text (Sec. 5, 'Evaluation metrics') does not disclose this reference choice, and Sec. 4.3 says test metrics are 'still computed against x0,' which appears inconsistent with the supplement. I request that all editing metrics be recomputed against x0 (and, where applicable, against the intended target image for each edit), with the protocol stated explicitly in the main text.
  2. [Algorithm 1 and Supplementary Material, 'Backpropagation strategy'] Equation (2) trains against x1, and the supplement states that gradients are only computed for the final iteration. Under this scheme, gradient information does not flow through the earlier encoder-decoder steps that produce x_{k-1}, so the loss does not actually optimize the full iterative chain described by Eq. (1). As a consequence, the paper's explanation of why REED reduces cumulative artifacts is incomplete, and Algorithm 1's unconditional 'Take gradient descent step on ∇Ltrain(x1,xk,zk)' is misleading. Please clarify the exact optimization objective and provide evidence that final-iteration-only gradients suffice, for example by comparing with full backpropagation for a small k.
  3. [Tables 1 and 2] All quantitative results are single-run numbers on a 179-image subset of ImagenHub, reported without error bars, confidence intervals, or significance tests. Since the headline comparisons involve many small metric differences at 5, 15, and 25 iterations, the robustness of the 'consistent improvements' claims cannot be assessed without variance estimates. I request that the authors report means and standard deviations over multiple seeds (or equivalent statistical support) for the main editing and ablation tables.
minor comments (4)
  1. [Table 2] The row label 'IT + FSL + DI(k=5)' is confusing: DI stands for dynamic incrementation, so the effective k is not a fixed value of 5; please clarify the reported configuration and the final k used for the full model.
  2. [Section 5.5, Figure 5] The NTI comparison is presented only qualitatively; adding a quantitative table (e.g., LPIPS and PSNR versus iteration for vanilla NTI and NTI+REED) would strengthen the claim that inversion methods do not inherently solve the degradation.
  3. [Throughout] There are several typographical and formatting issues, including 'limtiations' and 'reconstrctions' in the Related Work, inconsistent spacing in 'V AE', and a stray semicolon in Sec. 4.2 ('however; past k = 6').
  4. [Section 5, 'Evaluation metrics'] The choice of reference image (x0 vs x1) is critical to interpreting the results and should be described in the main text rather than only in the supplement.

Circularity Check

1 steps flagged · score 6.0 of 10

Reported quality metrics are computed against the model's own first output x1, which is also the target of the first-step training loss; the headline improvement is therefore partly the training objective itself, not an independent measure of source-fidelity preservation.

  1. fitted input called prediction [Sec. 4.3 / Eq. (2); Supplementary 'Experiments and comparisons']
    "Eq. (2): Ltrain = LMSE(x1,xk) + α·LLPIPS(x1,xk) + β·DKL. Sec. 4.3: 'we instead compute the training loss between xk and x1. ... Note that the validation loss and test metrics are still computed against x0, as this is the true performance indicator.' Supplementary: 'we compute metrics between the given target image (one of iterations 5,15, or 25) and x1 — not to the source image.'"

    The decoder is trained to minimize MSE/LPIPS between the k-th iterative output xk and the first output x1 (Eq. 2). The reported quality metrics (MSE/LPIPS/SSIM/FID) are then computed between the iteration 5/15/25 output and x1, i.e., the same objective evaluated on held-out images. Because x1 is produced by the decoder under evaluation, 'quality preservation' is defined as consistency with the model's own first output, not fidelity to the source. In the encode-decode ablation (Table 2), the evaluation is exactly the training task, so improvement follows from fitting. In the editing tables, external edits add some independent content, but the metric still rewards closeness to a self-produced x1, so the measured gain is partly built into the training loss.

full rationale

This paper contains no derivation chain, no imported uniqueness theorem, and no load-bearing self-citation; its contribution is an empirical training scheme plus evaluations against existing editing models. The specific circular issue is the metric reference: the first-step loss (Eq. 2) trains the decoder to make xk close to x1, and the reported quality metrics compare iteration 5/15/25 outputs to x1. Hence the quantitative support for 'image quality preservation' is, to a substantial degree, a held-out measurement of the training objective rather than an independent check of source-image fidelity. The contradiction between Sec. 4.3 ('test metrics ... computed against x0') and the supplementary ('metrics between ... x1 — not to the source image') confirms that the source-anchored validation is not in fact used for the reported numbers. The editing-model experiments (InstructPix2Pix, MagicBrush, DiffEdit, PbE, SD Inpainting) do provide evidence outside the plain encode-decode training distribution, so the result is not fully tautological; however, because those evaluations also use the self-produced x1 as the reference, the central claim that REED preserves image quality over iterations is only partially established. The paper honestly labels the transfer from encode-decode training to editing as a hypothesis (Sec. 4.1), which is a load-bearing assumption but not a circular step. Overall, the reported improvement is partly constructed by aligning the evaluation metric with the training objective, warranting a mid-range circularity score rather than a clean non-finding.

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

The central claims rest on three unproved premises: that the pretrained SD2.1 VAE and downstream editing models are valid substrates, that accumulated artifacts are mainly VAE reconstruction error, and that iterative autoencoding gains transfer to editing. The training hyperparameters alpha, beta, and the k schedule are hand-chosen. No new physical or conceptual entities are introduced.

free parameters (3)
  • alpha (LPIPS loss weight) = 0.01
    Hand-chosen scaling of the perceptual term in Eq. (2); no ablation is reported for this value.
  • beta (KL loss weight) = 1
    Hand-chosen scaling of the KL term in Eq. (2); no ablation is reported for this value.
  • k curriculum (initial 4, max 20, patience 5 epochs) = 4 to 20
    Chosen empirically from validation plateaus. These hyperparameters control dynamic incrementation but are not fitted to the test metric.
assumptions (3)
  • domain assumption Iterative editing artifacts are dominated by VAE reconstruction error.
    Motivates decoder-only fine-tuning. Demonstrated for pure encode-decode loops in Fig. 2 and 3, but editing and inversion can inject their own errors, as Sec. 5.5 shows.
  • ad hoc to paper Improvement on repeated encode-decode cycles transfers to iterative editing.
    Stated as a hypothesis in Sec. 4.1; the editing experiments provide evidence, but no mechanism is given for why the transfer holds across different editing models.
  • domain assumption Frozen encoder preserves compatibility with pretrained diffusion editing models.
    Section 4 fine-tunes only the decoder, assuming the latent distribution and downstream editing models remain valid when the decoder changes.

how reviews work

0 comments
Cite this review

Pith. "Pith review of REED-VAE: RE-Encode Decode Training for Iterative Image Editing with Diffusion Models." pith.science (2026). https://pith.science/paper/HAIR26TH

@misc{pith2026250418989,
  author       = {Pith},
  title        = {Pith review of: REED-VAE: RE-Encode Decode Training for Iterative Image Editing with Diffusion Models},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/HAIR26TH}},
  note         = {Machine review of arXiv:2504.18989}
}
read the original abstract

While latent diffusion models achieve impressive image editing results, their application to iterative editing of the same image is severely restricted. When trying to apply consecutive edit operations using current models, they accumulate artifacts and noise due to repeated transitions between pixel and latent spaces. Some methods have attempted to address this limitation by performing the entire edit chain within the latent space, sacrificing flexibility by supporting only a limited, predetermined set of diffusion editing operations. We present a RE-encode decode (REED) training scheme for variational autoencoders (VAEs), which promotes image quality preservation even after many iterations. Our work enables multi-method iterative image editing: users can perform a variety of iterative edit operations, with each operation building on the output of the previous one using both diffusion-based operations and conventional editing techniques. We demonstrate the advantage of REED-VAE across a range of image editing scenarios, including text-based and mask-based editing frameworks. In addition, we show how REED-VAE enhances the overall editability of images, increasing the likelihood of successful and precise edit operations. We hope that this work will serve as a benchmark for the newly introduced task of multi-method image editing. Our code and models will be available at https://github.com/galmog/REED-VAE

Figures

Figures reproduced from arXiv: 2504.18989 by the authors.

Figure 1
Figure 1. REED-VAE (top) preserves image quality over multiple editing iterations, allowing users to perform multiple edit operations using a combination of frameworks and techniques. The Vanilla VAE (bottom) accumulates many artifacts and noise along the way, becoming very apparent once multiple iterative edit operations are performed. The total edit sequence consists of 14 steps, of which only the last 4 are shown here for … view at source ↗
Figure 2
Figure 2. Even without a diffusion model in the pipeline, the Vanilla-VAE (top row) accumulates artifacts and exhibits significant distortion very quickly throughout encode-decode iterations. The tiger’s features lose their distinct shapes and edges, appearing more globular and less defined. The color palette is altered, with a noticeable increase in blue tones and a decrease in the richness of the orange and greens. Fine det… view at source ↗
Figure 3
Figure 3. Given an input image (a) we perform 20 encode-decode iterations and present the the results in image (top) and frequency domain (bottom). Vanilla-VAE (b) exhibits significant loss of high￾frequency information (evidenced by the dimming and blurring of the outer regions of the spectrum), and dominance of low-frequency features (evidenced by the enlarged central bright region). In addi￾tion, it also introduced new hig… view at source ↗
Figures from the paper (8 more)
Figure 4
Figure 4. Figure 4: Examples of types of edit sessions made possible with REED-VAE. Using the Vanilla-VAE (right), significant noise and artifacts accumulate quickly after multiple edit operations. Intermediate edit operations are omitted to highlight the final edited image. Four types of…
Figure 5
Figure 5. Figure 5: Row 1: Null-Text Inversion (NTI) is used to iteratively invert the image and regenerate it from the inverted latent. Row 2: the Vanilla￾VAE is used to iteratively encode and decode the image. Row 3: NTI is used with REED-VAE to iteratively invert the image and regenera…
Figure 6
Figure 6. Figure 6: Iterative edits using Null-Text Inversion. Prompts: “a landscape with desert mountains” → “a landscape with snowy mountains”. Despite regenerating latents through the inversion process, visual artifacts accumulate, particularly in later iterations (e.g. noise patterns …
Figure 7
Figure 7. Figure 7: Comparison on iterative encode/decode task with more recent latent diffusion models, reported at 5,10,15,20,25 iterations. REED￾VAE is able to outperform even the newest models with 16-channel latent spaces, suggesting training these new model’s VAEs with the REED algo…
Figure 8
Figure 8. Figure 8: Additional comparison on iterative encode/decode task with more recent latent diffusion models, reported at 5,10,15,20,25 itera￾tions [PITH_FULL_IMAGE:figures/full_fig_p017_8.png]
Figure 9
Figure 9. Figure 9: Ablation on individual components of REED-VAE on a sample image from our evaluation set. We compare the Vanilla-VAE (1), REED with static Iterative Training (IT) at k = 2 (2) and k = 3 (3), REED with IT at k = 5 and the First-Step Loss (FSL) (4), and the full REED-VAE …
Figure 10
Figure 10. Figure 10: Full sequence of iterative inversion reconstructions using Vanilla-VAE with Null-Text Inversion (NTI) [MHA∗ 23]. The input image undergoes NTI-based inversion followed by reconstruction with the same source prompt for 25 iterations. Early iterations (1-10) retain reas…
Figure 11
Figure 11. Figure 11: Full sequence of iterative inversion reconstructions using REED-VAE with Null-Text Inversion (NTI) [MHA∗ 23]. The input image undergoes NTI-based inversion followed by reconstruction with the same source prompt for 25 iterations. REED-VAE maintains high fidelity to th…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

50 extracted references · 27 canonical work pages

  1. [1]

    write newline

    " write newline "" before.all 'output.state := FUNCTION fin.entry add.period write newline FUNCTION new.block output.state before.all = 'skip after.block 'output.state := if FUNCTION new.sentence output.state after.block = 'skip output.state before.all = 'skip after.sentence 'output.state := if if FUNCTION not #0 #1 if FUNCTION and 'skip pop #0 if FUNCTIO...

  2. [2]

    write newline

    " write newline "" before.all 'output.state := FUNCTION fin.entry.original add.period write newline FUNCTION new.block output.state before.all = 'skip after.block 'output.state := if FUNCTION new.sentence output.state after.block = 'skip output.state before.all = 'skip after.sentence 'output.state := if if FUNCTION not #0 #1 if FUNCTION and 'skip pop #0 i...

  3. [3]

    : Detecting deep-fake videos from phoneme-viseme mismatches

    Agarwal S., Farid H., Fried O., Agrawala M. : Detecting deep-fake videos from phoneme-viseme mismatches. In 2020 IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops (CVPRW) (2020), pp. 2814--2822. https://doi.org/10.1109/CVPRW50498.2020.00338 doi:10.1109/CVPRW50498.2020.00338

  4. [4]

    : Blended latent diffusion

    Avrahami O., Fried O., Lischinski D. : Blended latent diffusion. ACM Trans. Graph. 42, 4 (jul 2023). URL: https://doi.org/10.1145/3592450, https://doi.org/10.1145/3592450 doi:10.1145/3592450

  5. [5]

    : Blended diffusion for text-driven editing of natural images

    Avrahami O., Lischinski D., Fried O. : Blended diffusion for text-driven editing of natural images. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (2022), pp. 18208--18218

  6. [6]

    Brooks T., Holynski A., Efros A. A. : Instructpix2pix: Learning to follow image editing instructions. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (2023), pp. 18392--18402

  7. [7]

    : Curriculum learning

    Bengio Y., Louradour J., Collobert R., Weston J. : Curriculum learning. In Proceedings of the 26th annual international conference on machine learning (2009), pp. 41--48

  8. [8]

    : Diffedit: Diffusion-based semantic image editing with mask guidance

    Couairon G., Verbeek J., Schwenk H., Cord M. : Diffedit: Diffusion-based semantic image editing with mask guidance. arXiv preprint arXiv:2210.11427 (2022)

Show all 50 references
  1. [9]

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

    Cao M., Wang X., Qi Z., Shan Y., Qie X., Zheng Y. : Masactrl: Tuning-free mutual self-attention control for consistent image synthesis and editing. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV) (October 2023), pp. 22560--22570

  2. [10]

    : Diffusion models beat gans on image synthesis

    Dhariwal P., Nichol A. : Diffusion models beat gans on image synthesis. Advances in neural information processing systems 34 (2021), 8780--8794

  3. [11]

    : Scaling rectified flow transformers for high-resolution image synthesis

    Esser P., Kulal S., Blattmann A., Entezari R., M \"u ller J., Saini H., Levi Y., Lorenz D., Sauer A., Boesel F., et al. : Scaling rectified flow transformers for high-resolution image synthesis. In Forty-first International Conference on Machine Learning (2024)

  4. [12]

    : Taming transformers for high-resolution image synthesis

    Esser P., Rombach R., Ommer B. : Taming transformers for high-resolution image synthesis. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition (2021), pp. 12873--12883

  5. [13]

    H., Chechik G., Cohen-Or D

    Gal R., Alaluf Y., Atzmon Y., Patashnik O., Bermano A. H., Chechik G., Cohen-Or D. : An image is worth one word: Personalizing text-to-image generation using textual inversion, 2022. URL: https://arxiv.org/abs/2208.01618, https://doi.org/10.48550/ARXIV.2208.01618 doi:10.48550/...

  6. [14]

    : Diffusion model-based image editing: A survey

    Huang Y., Huang J., Liu Y., Yan M., Lv J., Liu J., Xiong W., Zhang H., Chen S., Cao L. : Diffusion model-based image editing: A survey. arXiv preprint arXiv:2402.17525 (2024)

  7. [15]

    : Denoising diffusion probabilistic models

    Ho J., Jain A., Abbeel P. : Denoising diffusion probabilistic models. Advances in neural information processing systems 33 (2020), 6840--6851

  8. [16]

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

    Hertz A., Mokady R., Tenenbaum J., Aberman K., Pritch Y., Cohen-Or D. : Prompt-to-prompt image editing with cross attention control. arXiv preprint arXiv:2208.01626 (2022)

  9. [17]

    : Gans trained by a two time-scale update rule converge to a local nash equilibrium

    Heusel M., Ramsauer H., Unterthiner T., Nessler B., Hochreiter S. : Gans trained by a two time-scale update rule converge to a local nash equilibrium. Advances in neural information processing systems 30 (2017)

  10. [18]

    Joseph K., Udhayanan P., Shukla T., Agarwal A., Karanam S., Goswami K., Srinivasan B. V. : Iterative multi-granular image editing using diffusion models. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision (2024), pp. 8107--8116

  11. [19]

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

    Ju X., Zeng A., Bian Y., Liu S., Xu Q. : Pnp inversion: Boosting diffusion-based editing with 3 lines of code. International Conference on Learning Representations ( ICLR ) (2024)

  12. [20]

    : Imagenhub: Standardizing the evaluation of conditional image generation models

    Ku M., Li T., Zhang K., Lu Y., Fu X., Zhuang W., Chen W. : Imagenhub: Standardizing the evaluation of conditional image generation models. In The Twelfth International Conference on Learning Representations (2024). URL: https://openreview.net/forum?id=OuV9ZrkQlc

  13. [21]

    : Fakeout: Leveraging out-of-domain self-supervision for multi-modal video deepfake detection

    Knafo G. : Fakeout: Leveraging out-of-domain self-supervision for multi-modal video deepfake detection. Master's thesis, Reichman University (Israel), 2022

  14. [22]

    P., Welling M

    Kingma D. P., Welling M. : Auto-encoding variational bayes. arXiv preprint arXiv:1312.6114 (2013)

  15. [23]

    : Imagic: Text-based real image editing with diffusion models

    Kawar B., Zada S., Lang O., Tov O., Chang H., Dekel T., Mosseri I., Irani M. : Imagic: Text-based real image editing with diffusion models. In Conference on Computer Vision and Pattern Recognition 2023 (2023)

  16. [24]

    Labs B. F. : Flux. https://github.com/black-forest-labs/flux, 2023. URL: https://github.com/black-forest-labs/flux

  17. [25]

    : Repaint: Inpainting using denoising diffusion probabilistic models

    Lugmayr A., Danelljan M., Romero A., Yu F., Timofte R., Van Gool L. : Repaint: Inpainting using denoising diffusion probabilistic models. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition (2022), pp. 11461--11471

  18. [26]

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

    Mokady R., Hertz A., Aberman K., Pritch Y., Cohen-Or D. : Null-text inversion for editing real images using guided diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (2023), pp. 6038--6047

  19. [27]

    : Sdedit: Guided image synthesis and editing with stochastic differential equations

    Meng C., He Y., Song Y., Song J., Wu J., Zhu J.-Y., Ermon S. : Sdedit: Guided image synthesis and editing with stochastic differential equations. arXiv preprint arXiv:2108.01073 (2021)

  20. [28]

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

    Nichol A., Dhariwal P., Ramesh A., Shyam P., Mishkin P., McGrew B., Sutskever I., Chen M. : Glide: Towards photorealistic image generation and editing with text-guided diffusion models. arXiv preprint arXiv:2112.10741 (2021)

  21. [29]

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

    Podell D., English Z., Lacey K., Blattmann A., Dockhorn T., M \"u ller J., Penna J., Rombach R. : Sdxl: Improving latent diffusion models for high-resolution image synthesis. arXiv preprint arXiv:2307.01952 (2023)

  22. [30]

    : Effective real image editing with accelerated iterative diffusion inversion

    Pan Z., Gherardi R., Xie X., Huang S. : Effective real image editing with accelerated iterative diffusion inversion. In Proceedings of the IEEE/CVF International Conference on Computer Vision (2023), pp. 15912--15921

  23. [31]

    : Zero-shot image-to-image translation

    Parmar G., Kumar Singh K., Zhang R., Li Y., Lu J., Zhu J.-Y. : Zero-shot image-to-image translation. In ACM SIGGRAPH 2023 Conference Proceedings (2023), pp. 1--11

  24. [32]

    Park J., Kwon G., Ye J. C. : Ed-nerf: Efficient text-guided editing of 3d scene using latent space nerf. arXiv preprint arXiv:2310.02712 (2023)

  25. [33]

    : High-resolution image synthesis with latent diffusion models

    Rombach R., Blattmann A., Lorenz D., Esser P., Ommer B. : High-resolution image synthesis with latent diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) (June 2022), pp. 10684--10695

  26. [34]

    : Hierarchical text-conditional image generation with clip latents

    Ramesh A., Dhariwal P., Nichol A., Chu C., Chen M. : Hierarchical text-conditional image generation with clip latents. arxiv 2022. arXiv preprint arXiv:2204.06125 (2022)

  27. [35]

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

    Schuhmann C., Beaumont R., Vencu R., Gordon C., Wightman R., Cherti M., Coombes T., Katta A., Mullis C., Wortsman M., et al. : Laion-5b: An open large-scale dataset for training next generation image-text models. Advances in Neural Information Processing Systems 35 (2022), 252...

  28. [36]

    L., Ghasemipour K., Gontijo Lopes R., Karagol Ayan B., Salimans T., et al

    Saharia C., Chan W., Saxena S., Li L., Whang J., Denton E. L., Ghasemipour K., Gontijo Lopes R., Karagol Ayan B., Salimans T., et al. : Photorealistic text-to-image diffusion models with deep language understanding. Advances in neural information processing systems 35 (2022), ...

  29. [37]

    : pytorch-fid: FID Score for PyTorch

    Seitzer M. : pytorch-fid: FID Score for PyTorch . https://github.com/mseitzer/pytorch-fid, August 2020. Version 0.3.0. URL: https://github.com/mseitzer/pytorch-fid

  30. [38]

    : Deep image fingerprint: Towards low budget synthetic image detection and model lineage analysis

    Sinitsa S., Fried O. : Deep image fingerprint: Towards low budget synthetic image detection and model lineage analysis. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision (2024), pp. 4067--4076

  31. [39]

    : Denoising diffusion implicit models

    Song J., Meng C., Ermon S. : Denoising diffusion implicit models. arXiv preprint arXiv:2010.02502 (2020)

  32. [40]

    Y., Bai S

    Shi Y., Xue C., Pan J., Zhang W., Tan V. Y., Bai S. : Dragdiffusion: Harnessing diffusion models for interactive point-based image editing. arXiv preprint arXiv:2306.14435 (2023)

  33. [41]

    : Neural discrete representation learning

    Van Den Oord A., Vinyals O., et al. : Neural discrete representation learning. Advances in neural information processing systems 30 (2017)

  34. [42]

    : Diffusers: State-of-the-art diffusion models

    von Platen P., Patil S., Lozhkov A., Cuenca P., Lambert N., Rasul K., Davaadorj M., Nair D., Paul S., Berman W., Xu Y., Liu S., Wolf T. : Diffusers: State-of-the-art diffusion models. https://github.com/huggingface/diffusers, 2022

  35. [43]

    C., Sheikh H

    Wang Z., Bovik A. C., Sheikh H. R., Simoncelli E. P. : Image quality assessment: from error visibility to structural similarity. IEEE transactions on image processing 13, 4 (2004), 600--612

  36. [44]

    : Tree-rings watermarks: Invisible fingerprints for diffusion images

    Wen Y., Kirchenbauer J., Geiping J., Goldstein T. : Tree-rings watermarks: Invisible fingerprints for diffusion images. Advances in Neural Information Processing Systems 36 (2024)

  37. [45]

    : Paint by example: Exemplar-based image editing with diffusion models

    Yang B., Gu S., Zhang B., Zhang T., Chen X., Sun X., Chen D., Wen F. : Paint by example: Exemplar-based image editing with diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (2023), pp. 18381--18391

  38. [46]

    : Model collapse in the self-consuming chain of diffusion finetuning: A novel perspective from quantitative trait modeling

    Yoon Y., Hu D., Weissburg I., Qin Y., Jeong H. : Model collapse in the self-consuming chain of diffusion finetuning: A novel perspective from quantitative trait modeling. arXiv preprint arXiv:2407.17493 (2024)

  39. [47]

    Yang S., Zhou Y., Liu Z., Loy C. C. : Rerender a video: Zero-shot text-guided video-to-video translation. In SIGGRAPH Asia 2023 Conference Papers (2023), pp. 1--11

  40. [48]

    A., Shechtman E., Wang O

    Zhang R., Isola P., Efros A. A., Shechtman E., Wang O. : The unreasonable effectiveness of deep features as a perceptual metric. In Proceedings of the IEEE conference on computer vision and pattern recognition (2018), pp. 586--595

  41. [49]

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

    Zhang K., Mo L., Chen W., Sun H., Su Y. : Magicbrush: A manually annotated dataset for instruction-guided image editing. In Advances in Neural Information Processing Systems (2023)

  42. [50]

    : Hive: Harnessing human feedback for instructional visual editing

    Zhang S., Yang X., Feng Y., Qin C., Chen C.-C., Yu N., Chen Z., Wang H., Savarese S., Ermon S., et al. : Hive: Harnessing human feedback for instructional visual editing. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (2024), pp. 9026--9036

Pith tools

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