REVIEW 3 major objections 6 minor 69 references
Controllable Coupled Image Generation via Diffusion Models
T0 review · 3 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read A time-varying attention weight keeps backgrounds identical across generated images while each prompt's subject varies.
desk verdict The method is a plausible starting point for coupled image generation, but the empirical claims don't survive contact with the fact that the evaluation prompts are the same ones used to optimize the method's parameters. 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 mechanism is a parameterized cross-attention control: after an LLM splits each prompt into a shared background prompt and a per-prompt entity prompt, the model's cross-attention modules accept both text embeddings and blend them with a step-dependent weight $\theta_i \in [0,1]$, one weight per denoising step. In QKV-level concatenation the background key is scaled by $(1-\theta_i)$ and the entity key by $\theta_i$; in embedding-level concatenation the image hidden state is interpolated as $\theta_i$ times the entity branch plus $(1-\theta_i)$ times the background branch. The schedule $\theta_1 \le \cdots \le \theta_N$ is learned by an isotonic optimization that maximizes a combined metric of background similarity (Euclidean distance over a Segment Anything foreground mask) and text-image alignment (CLIPScore).
What would settle it
Run the training of $\theta$ on a set of prompt pairs disjoint from the evaluation pairs, then compute background similarity and CLIPScore on held-out prompt pairs against the same baselines; if the held-out scores do not beat random-seed and prompt-to-prompt baselines, the central claim of generalizable improvement collapses.
Extended reading notes
Core claim
The paper's central claim is that the entanglement of background and entity in a text-to-image model's cross-attention is the reason separately generated images drift apart in background, and that this entanglement can be corrected by explicit prompt decomposition plus a time-varying scalar weight inside the attention computation. Concretely, the authors concatenate background keys scaled by $(1-\theta)$ and entity keys scaled by $\theta$ (in QKV-level cross-attention) or interpolate the image hidden states from separate background and entity branches (in embedding-level cross-attention), with $\theta$ increasing from near 0 to near 1 over the 50 denoising steps. They state that this schedule makes early steps commit to shared background structure and later steps refine prompt-specific entities. The reported result is that this attention-level control yields the best combined background-similarity and text-alignment scores among the compared methods while adding no sampling-time cost beyond optimizing the small $\theta$ vector.
Load-bearing premise
The paper tunes the weight schedule by maximizing the same background-similarity-plus-alignment score on the very prompt pairs it later uses for the comparison tables, so the claimed advantage assumes that tuning on the test prompts gives a fair picture of performance on new prompts.
Editorial extensions
If this is right
- The method adds no extra sampling steps beyond the base model's normal denoising, since only the small weight vector is optimized.
- Any set of prompts that share a describable background can be coupled, whether the entities are entirely different objects or the same object in different poses.
- The generated pairs can serve as training data for image-editing models, conditioning frames for video generation, and multi-view inputs for 3D reconstruction.
- The proposed combined metric gives a quantitative yardstick for background similarity and text-image alignment that other coupled-generation methods can be measured against.
Reading between the lines
- A held-out evaluation would test whether the learned weight schedule generalizes, because the reported tables optimize $\theta$ on the same prompt pairs they later score; the paper does not report such a split.
- The ascending $\theta$ schedule resembles a coarse-to-fine curriculum, so a fixed schedule trained on one prompt family might transfer across unrelated prompt families, which would remove the need to re-optimize per prompt pair.
- The background-similarity metric masks out the union of entity regions, so it may not capture global consistency of lighting, shadows, and texture; a perceptual or feature-space distance could rank methods differently.
- For video generation, the same time-varying weights could be shared across frames to keep backgrounds stable rather than re-optimized per frame, potentially simplifying first-last-frame conditioning.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a method for coupled image generation, where multiple images are generated simultaneously with shared backgrounds but prompt-specific foreground entities. The method uses an LLM to decompose each prompt into a shared background prompt and per-prompt entity prompts, then modifies the cross-attention modules of a text-to-image diffusion model (Flux.1-dev) to take both prompt types with a time-varying weight parameter θ_i per denoising step. The θ sequence is fit by solving an isotonic optimization problem (Eq. 12) that maximizes a combined objective fc (Eq. 3) consisting of a background-similarity term (based on SAM segmentation and L2 distance on masked regions) and a text-alignment term (CLIPScore). The paper reports quantitative comparisons on three prompt-pair examples (Figures 3-5, Tables 1-3) against random-seed baseline, Prompt-to-Prompt, and RF-inversion, plus ablations on parameterized θ functions and centers.
Significance. The task of coupled image generation is practically relevant, and the idea of separating background and entity prompts and controlling their relative influence through time-varying cross-attention weights is a plausible and interesting approach. The isotonic constraint to reflect the coarse-to-fine structure of diffusion sampling is also a reasonable inductive bias. However, the paper's central empirical claim—that the method outperforms existing approaches—is not supported by the evaluation as presented. The reported metrics are computed on the same prompt pairs used to fit θ, baselines receive no similar per-prompt fitting, the numbers do not reproduce from Eq. (3) with the stated hyperparameters, and there are only three examples with no variance reported. These issues undermine the validity of the quantitative conclusions.
major comments (3)
- [Section 4.3, Eq. (12); Section 5.2, Tables 1-3] The evaluation is in-sample: the θ sequence is optimized by maximizing the combined metric fc (Eq. 12) on training sets {T_{k,1},...,T_{k,n}}, and Figure 6 explicitly shows the trained θ values used for the three examples in Figures 3-5. Tables 1-3 then report fc values on those exact same prompt pairs. Consequently, the reported 'Ours' metric values are fitted values, not independent predictions. Baselines (Random seed, P2P, RF-inversion) do not receive an analogous per-prompt optimization of a tunable parameter against fc. This does not establish that the method generalizes to new prompt pairs; it only shows that the optimizer can achieve a high objective on the training instances. The authors should evaluate on held-out prompt sets, or perform cross-validation, and should give baselines the same optimization budget (where applicable) to make a fair comparison.
- [Equation (3) vs. Tables 1-3] The combined metric values reported in Tables 1-3 are not consistent with Eq. (3) under the stated hyperparameters λ_bg=300 and λ_ti=1/30. For Table 1, 'Ours', using the reported background similarity fbg = -2.080×10^-4 and text-image alignment 22.61 as the average per-prompt CLIPScore (n=2), Eq. (3) gives fc = 300×(-2.080×10^-4) + (1/30)×22.61 = -0.0624 + 0.7537 = 0.6913, not the reported 1.558. Similar discrepancies appear for all rows in Tables 1-3 (e.g., Random seed in Table 1 yields -1.3976 instead of -0.919). The authors must either clarify the computation (e.g., different normalization, different interpretation of the reported text-alignment number) or correct the tables and equation; as written, the numerical results are not reproducible.
- [Section 5.2] The experimental comparison is based on only three prompt pairs, with no repetition across random seeds or multiple runs and no variance or significance estimates. Each table reports a single image pair per method, and the visual examples in Figures 3-5 are single instances. Given the inherent stochasticity of diffusion generation even with fixed seeds (as the authors themselves note in Figure 1), the claim that the method 'outperforms existing approaches across these criteria' requires a larger evaluation set and at least mean ± std over repeated draws. Without this, the quantitative advantage is not established.
minor comments (6)
- [Section 4, first paragraph] The word 'genrated' is a typo; it should be 'generated'.
- [Section 5.1.1] The phrase 'isotomic constraint' is a typo; it should be 'isotonic constraint'.
- [Figure 1 caption] The caption contains a grammatical error: 'The first row illustrates that by given prompts' should likely be 'The first row illustrates that, given prompts...'.
- [Section 4.1 and Figure 2] The paper states that 'a pre-trained LLM' is used for prompt disentanglement but does not specify which LLM, its size, or the exact prompt template. This information is needed for reproducibility.
- [Section 5.1.1] The base model is referred to as 'Flux.1dev' here and 'Flux Labs' elsewhere; please use a consistent name and provide the exact version used.
- [Appendix B.2, Figure 6] The figure shows three θ sequences, but the x-axis label and legend are not described in the caption; please clarify what the axes represent.
Circularity Check
Reported gains are in-sample: the same prompt pairs used to optimize the time-varying θ (Eq. 12) are the pairs evaluated in Tables 1–3, so the comparison does not establish generalizable outperformance.
-
fitted input called prediction
[Section 4.3 (Eq. 12); Section 5.2; Tables 1–3; Figure 6]
"we formulate the problem of learning θ as an isotonic optimization problem: max_θ (1/M) Σ_{k=1}^M f_c(T_{k,1},...,T_{k,n},θ), subject to θ_1 ≤ θ_2 ≤ ... ≤ θ_N, θ∈Θ. ... Visualization of the trained time-varying parameters used in the three examples. ... Combined metric (↑) 1.558 -0.919 1.246 -0.214"
Section 4.3 defines θ as the maximizer of the combined objective f_c over training prompt sets. Figure 6 identifies the resulting θ as the 'trained time-varying parameters used in the three examples,' and Tables 1–3 report f_c for exactly those three prompt pairs (Figures 3–5). Therefore the reported 'Ours' combined metric is the value of the training objective at its optimizer on the evaluation prompts; it is not a held-out prediction. The baselines receive no analogous per-prompt fitted parameter, so the comparison reports an in-sample optimum against unoptimized baselines. No held-out prompt pairs or cross-validation are presented to show that the fitted θ sequence generalizes to new prompt pairs.
full rationale
The paper's attention-control mechanism is a genuine architectural intervention, and the LLM-based background/entity disentanglement could in principle be evaluated visually. However, the quantitative claim of outperformance rests on an in-sample fit: Section 4.3 (Eq. 12) defines θ as the maximizer of the combined objective f_c over training prompt sets, and Figure 6 presents the trained θ used for the three examples whose metrics appear in Tables 1–3. Thus the reported combined scores for 'Ours' are the optimized objective values on the evaluation prompts, not predictions for unseen prompt pairs. This is the pattern of fitting a parameter to the evaluation data and then reporting the fit as a result. The absence of held-out prompt sets makes the comparison to baselines (which receive no such fitted parameter) unable to support the claimed generalizable outperformance. A secondary internal inconsistency compounds the issue: using the stated λ_bg=300, λ_ti=1/30 and Table 1's background similarity (-2.080×10^-4) and text-alignment (22.61) in Eq. (3) yields about 0.69, not the reported 1.558; similar mismatches appear in Tables 2–3, making the reported combined metric difficult to interpret. There are no load-bearing self-citations or imported uniqueness theorems, so the circularity is confined to the evaluation protocol rather than to the method's mathematical derivation.
Assumptions & free parameters
free parameters (3)
- Time-varying cross-attention weights θ_i (i=1..N=50) =
Per prompt set, e.g., Figure 6 shows sequences starting near 0 and rising to 1
- Combined objective weights λ_bg and λ_ti =
λ_bg=300, λ_ti=1/30
- Ablation function center c and scale k =
e.g., c=6.7, k=0.5 for arctan; c=10, k=0.8 for sin
assumptions (5)
- domain assumption A pretrained LLM reliably decomposes any prompt set into a shared background prompt and per-image entity prompts without losing meaning
- ad hoc to paper Scaling keys by (1-θ) and θ and normalizing by sqrt(d_text + d_img) preserves attention score scale, and at θ=1 the modified attention equals the original entity-only attention
- domain assumption The f_bg metric computed with SAM segmentation and masked L2 distance is a valid measure of background coupling
- domain assumption Diffusion models first generate coarse structure then refine details, motivating the ascending θ constraint
- domain assumption CLIPScore is an adequate measure of text-image alignment for the optimization objective
Cite this review
Pith. "Pith review of Controllable Coupled Image Generation via Diffusion Models." pith.science (2026). https://pith.science/paper/Q7FEABEU
@misc{pith2026250606826,
author = {Pith},
title = {Pith review of: Controllable Coupled Image Generation via Diffusion Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/Q7FEABEU}},
note = {Machine review of arXiv:2506.06826}
}
read the original abstract
We provide an attention-level control method for the task of coupled image generation, where "coupled" means that multiple simultaneously generated images are expected to have the same or very similar backgrounds. While backgrounds coupled, the centered objects in the generated images are still expected to enjoy the flexibility raised from different text prompts. The proposed method disentangles the background and entity components in the model's cross-attention modules, attached with a sequence of time-varying weight control parameters depending on the time step of sampling. We optimize this sequence of weight control parameters with a combined objective that assesses how coupled the backgrounds are as well as text-to-image alignment and overall visual quality. Empirical results demonstrate that our method outperforms existing approaches across these criteria.
Figures
Figures from the paper (8 more)
Reference graph
Works this paper leans on
-
[1]
Wan 2.1 flf2v: First-last frame video generation
Alibaba Tongyi Wanxiang Team . Wan 2.1 flf2v: First-last frame video generation. https://www.runcomfy.com/comfyui-workflows/wan-2-1-flf2v-first-last-frame-video-generation, 2025. Accessed: May 14, 2025
work page 2025
-
[2]
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 Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 18208--18218, 2022
work page 2022
-
[3]
Neural machine translation by jointly learning to align and translate
Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. Neural machine translation by jointly learning to align and translate. arXiv preprint arXiv:1409.0473, 2014
arXiv 2014
-
[4]
Flux.1 redux [dev]: Image variation adapter for flux.1 models
Black Forest Labs . Flux.1 redux [dev]: Image variation adapter for flux.1 models. https://huggingface.co/black-forest-labs/FLUX.1-Redux-dev, 2025
work page 2025
-
[5]
Instructpix2pix: Learning to follow image editing instructions
Tim Brooks, Aleksander Holynski, and Alexei A Efros. Instructpix2pix: Learning to follow image editing instructions. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 18392--18402, 2023
work page 2023
-
[6]
Multi-view consistency loss for improved single-image 3d reconstruction of clothed people
Akin Caliskan, Armin Mustafa, Evren Imre, and Adrian Hilton. Multi-view consistency loss for improved single-image 3d reconstruction of clothed people. In Proceedings of the Asian Conference on Computer Vision, 2020
work page 2020
-
[7]
Masactrl: Tuning-free mutual self-attention control for consistent image synthesis and editing
Mingdeng Cao, Xintao Wang, Zhongang Qi, Ying Shan, Xiaohu Qie, and Yinqiang Zheng. Masactrl: Tuning-free mutual self-attention control for consistent image synthesis and editing. In Proceedings of the IEEE/CVF international conference on computer vision, pages 22560--22570, 2023
2023
-
[8]
Training-free layout control with cross-attention guidance
Minghao Chen, Iro Laina, and Andrea Vedaldi. Training-free layout control with cross-attention guidance. In Proceedings of the IEEE/CVF winter conference on applications of computer vision, pages 5343--5353, 2024
work page 2024
Show all 69 references
-
[9]
Perception prioritized training of diffusion models
Jooyoung Choi, Jungbeom Lee, Chaehun Shin, Sungwon Kim, Hyunwoo Kim, and Sungroh Yoon. Perception prioritized training of diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 11472--11481, 2022
2022
-
[10]
Flux.1-dev-controlnet-inpainting-beta
Alimama Creative. Flux.1-dev-controlnet-inpainting-beta. https://huggingface.co/alimama-creative/FLUX.1-dev-Controlnet-Inpainting-Beta, 2024
2024
-
[11]
Diffusion models beat gans on image synthesis
Prafulla Dhariwal and Alexander Nichol. Diffusion models beat gans on image synthesis. Advances in neural information processing systems, 34: 0 8780--8794, 2021
2021
-
[12]
Internlm-xcomposer2: Mastering free-form text-image composition and comprehension in vision-language large model
Xiaoyi Dong, Pan Zhang, Yuhang Zang, Yuhang Cao, Bin Wang, Linke Ouyang, Xilin Wei, Songyang Zhang, Haodong Duan, Maosong Cao, et al. Internlm-xcomposer2: Mastering free-form text-image composition and comprehension in vision-language large model. arXiv preprint arXiv:2401.16420, 2024
2024 arXiv
-
[13]
Efros, and Aleksander Holynski
Dave Epstein, Allan Jabri, Ben Poole, Alexei A. Efros, and Aleksander Holynski. Diffusion self-guidance for controllable image generation. 2023
2023
-
[14]
Casteer: Steering diffusion models for controllable generation
Tatiana Gaintseva, Chengcheng Ma, Ziquan Liu, Martin Benning, Gregory Slabaugh, Jiankang Deng, and Ismail Elezi. Casteer: Steering diffusion models for controllable generation. arXiv preprint arXiv:2503.09630, 2025
2025 arXiv
-
[15]
Generative adversarial networks
Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial networks. Communications of the ACM, 63 0 (11): 0 139--144, 2020
2020
-
[16]
Generative adversarial nets
Ian J Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. Advances in neural information processing systems, 27, 2014
2014
-
[17]
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. arXiv preprint arXiv:2208.01626, 2022
2022 arXiv
-
[18]
Clipscore: A reference-free evaluation metric for image captioning
Jack Hessel, Ari Holtzman, Maxwell Forbes, Ronan Le Bras, and Yejin Choi. Clipscore: A reference-free evaluation metric for image captioning. arXiv preprint arXiv:2104.08718, 2021
2021 arXiv
-
[19]
Denoising diffusion probabilistic models
Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffusion probabilistic models. Advances in neural information processing systems, 33: 0 6840--6851, 2020
2020
-
[20]
3d shape completion with multi-view consistent inference
Tao Hu, Zhizhong Han, and Matthias Zwicker. 3d shape completion with multi-view consistent inference. In Proceedings of the AAAI conference on artificial intelligence, volume 34, pages 10997--11004, 2020
2020
-
[21]
Globally and locally consistent image completion
Satoshi Iizuka, Edgar Simo-Serra, and Hiroshi Ishikawa. Globally and locally consistent image completion. ACM Transactions on Graphics (ToG), 36 0 (4): 0 1--14, 2017
2017
-
[22]
Video interpolation with diffusion models
Siddhant Jain, Daniel Watson, Eric Tabellion, Ben Poole, Janne Kontkanen, et al. Video interpolation with diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 7341--7351, 2024
2024
-
[23]
Artist: Aesthetically controllable text-driven stylization without training
Ruixiang Jiang and Changwen Chen. Artist: Aesthetically controllable text-driven stylization without training. arXiv preprint arXiv:2407.15842, 2024
2024 arXiv
-
[24]
Imagic: Text-based real image editing with diffusion models
Bahjat Kawar, Shiran Zada, Oran Lang, Omer Tov, Huiwen Chang, Tali Dekel, Inbar Mosseri, and Michal Irani. Imagic: Text-based real image editing with diffusion models. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 6007--6017, 2023
2023
-
[25]
Dense text-to-image generation with attention modulation
Yunji Kim, Jiyoung Lee, Jin-Hwa Kim, Jung-Woo Ha, and Jun-Yan Zhu. Dense text-to-image generation with attention modulation. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 7701--7711, 2023
2023
-
[26]
Auto-encoding variational bayes, 2013
Diederik P Kingma, Max Welling, et al. Auto-encoding variational bayes, 2013
2013
-
[27]
Segment anything
Alexander Kirillov, Eric Mintun, Nikhila Ravi, Hanzi Mao, Chloe Rolland, Laura Gustafson, Tete Xiao, Spencer Whitehead, Alexander C Berg, Wan-Yen Lo, et al. Segment anything. In Proceedings of the IEEE/CVF international conference on computer vision, pages 4015--4026, 2023
2023
-
[28]
o hler, Christian Schuler, Bernhard Sch \
Rolf K \"o hler, Christian Schuler, Bernhard Sch \"o lkopf, and Stefan Harmeling. Mask-specific inpainting with deep neural networks. In Pattern Recognition: 36th German Conference, GCPR 2014, M \"u nster, Germany, September 2-5, 2014, Proceedings 36 , pages 523--534. Springer, 2014
2014
-
[29]
Kuaishou unveils proprietary video generation model 'kling'
Kuaishou Technology . Kuaishou unveils proprietary video generation model 'kling'. https://ir.kuaishou.com/news-releases/news-release-details/kuaishou-unveils-proprietary-video-generation-model-kling, 2024. Accessed: May 14, 2025
2024
-
[30]
Flux.1 [dev]
Black Forest Labs. Flux.1 [dev]. https://huggingface.co/black-forest-labs/FLUX.1-dev, 2024 a
2024
-
[31]
Black Forest Labs. Flux. https://github.com/black-forest-labs/flux, 2024 b
2024
-
[32]
Context-aware synthesis and placement of object instances
Donghoon Lee, Sifei Liu, Jinwei Gu, Ming-Yu Liu, Ming-Hsuan Yang, and Jan Kautz. Context-aware synthesis and placement of object instances. Advances in neural information processing systems, 31, 2018
2018
-
[33]
Layerdiffusion: Layered controlled image editing with diffusion models
Pengzhi Li, Qinxuan Huang, Yikang Ding, and Zhiheng Li. Layerdiffusion: Layered controlled image editing with diffusion models. In SIGGRAPH Asia 2023 Technical Communications, pages 1--4. 2023 a
2023
-
[34]
Mt-gan: toward realistic image composition based on spatial features
Xiang Li, Guowei Teng, Ping An, and Hai-yan Yao. Mt-gan: toward realistic image composition based on spatial features. EURASIP Journal on Advances in Signal Processing, 2023 0 (1): 0 46, 2023 b
2023
-
[35]
Flow matching for generative modeling
Yaron Lipman, Ricky TQ Chen, Heli Ben-Hamu, Maximilian Nickel, and Matt Le. Flow matching for generative modeling. arXiv preprint arXiv:2210.02747, 2022
2022 arXiv
-
[36]
Image inpainting for irregular holes using partial convolutions
Guilin Liu, Fitsum A Reda, Kevin J Shih, Ting-Chun Wang, Andrew Tao, and Bryan Catanzaro. Image inpainting for irregular holes using partial convolutions. In Proceedings of the European conference on computer vision (ECCV), pages 85--100, 2018
2018
-
[37]
Mardini: Masked autoregressive diffusion for video generation at scale
Haozhe Liu, Shikun Liu, Zijian Zhou, Mengmeng Xu, Yanping Xie, Xiao Han, Juan C P \'e rez, Ding Liu, Kumara Kahatapitiya, Menglin Jia, et al. Mardini: Masked autoregressive diffusion for video generation at scale. arXiv preprint arXiv:2410.20280, 2024 a
-
[38]
Diffpop: Plausibility-guided object placement diffusion for image composition
Jiacheng Liu, Hang Zhou, Shida Wei, and Rui Ma. Diffpop: Plausibility-guided object placement diffusion for image composition. In Computer Graphics Forum, volume 43, page e15246. Wiley Online Library, 2024 b
2024
-
[39]
Step1x-edit: A practical framework for general image editing
Shiyu Liu, Yucheng Han, Peng Xing, Fukun Yin, Rui Wang, Wei Cheng, Jiaqi Liao, Yingming Wang, Honghao Fu, Chunrui Han, et al. Step1x-edit: A practical framework for general image editing. arXiv preprint arXiv:2504.17761, 2025
2025 arXiv
-
[40]
Directed diffusion: Direct control of object placement through attention guidance
Wan-Duo Kurt Ma, Avisek Lahiri, John P Lewis, Thomas Leung, and W Bastiaan Kleijn. Directed diffusion: Direct control of object placement through attention guidance. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, pages 4098--4106, 2024
2024
-
[41]
Null-text inversion for editing real images using guided diffusion models
Ron Mokady, Amir Hertz, Kfir Aberman, Yael Pritch, and Daniel Cohen-Or. Null-text inversion for editing real images using guided diffusion models. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 6038--6047, 2023
2023
-
[42]
Intelligent scissors for image composition
Eric N Mortensen and William A Barrett. Intelligent scissors for image composition. In Proceedings of the 22nd annual conference on Computer graphics and interactive techniques, pages 191--198, 1995
1995
-
[43]
T2i-adapter: Learning adapters to dig out more controllable ability for text-to-image diffusion models
Chong Mou, Xintao Wang, Liangbin Xie, Yanze Wu, Jian Zhang, Zhongang Qi, and Ying Shan. T2i-adapter: Learning adapters to dig out more controllable ability for text-to-image diffusion models. In Proceedings of the AAAI conference on artificial intelligence, volume 38, pages 42...
2024
-
[44]
Understanding the latent space of diffusion models through the lens of riemannian geometry
Yong-Hyun Park, Mingi Kwon, Jaewoong Choi, Junghyo Jo, and Youngjung Uh. Understanding the latent space of diffusion models through the lens of riemannian geometry. Advances in Neural Information Processing Systems, 36: 0 24129--24142, 2023
2023
-
[45]
Context encoders: Feature learning by inpainting
Deepak Pathak, Philipp Krahenbuhl, Jeff Donahue, Trevor Darrell, and Alexei A Efros. Context encoders: Feature learning by inpainting. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 2536--2544, 2016
2016
-
[46]
Grounded text-to-image synthesis with attention refocusing
Quynh Phung, Songwei Ge, and Jia-Bin Huang. Grounded text-to-image synthesis with attention refocusing. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 7932--7942, 2024
2024
-
[47]
Deadiff: An efficient stylization diffusion model with disentangled representations
Tianhao Qi, Shancheng Fang, Yanze Wu, Hongtao Xie, Jiawei Liu, Lang Chen, Qian He, and Yongdong Zhang. Deadiff: An efficient stylization diffusion model with disentangled representations. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pag...
2024
-
[48]
Unicontrol: A unified diffusion model for controllable visual generation in the wild
Can Qin, Shu Zhang, Ning Yu, Yihao Feng, Xinyi Yang, Yingbo Zhou, Huan Wang, Juan Carlos Niebles, Caiming Xiong, Silvio Savarese, et al. Unicontrol: A unified diffusion model for controllable visual generation in the wild. arXiv preprint arXiv:2305.11147, 2023
2023 arXiv
-
[49]
Learning transferable visual models from natural language supervision
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learning transferable visual models from natural language supervision. In International conference on machine learning, pa...
2021
-
[50]
High-resolution image synthesis with latent diffusion models
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj \"o rn Ommer. High-resolution image synthesis with latent diffusion models. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 10684--10695, 2022
2022
-
[51]
Semantic image inversion and editing using rectified stochastic differential equations
Litu Rout, Yujia Chen, Nataniel Ruiz, Constantine Caramanis, Sanjay Shakkottai, and Wen-Sheng Chu. Semantic image inversion and editing using rectified stochastic differential equations. arXiv preprint arXiv:2410.10792, 2024
2024 arXiv
-
[52]
Photorealistic text-to-image diffusion models with deep language understanding
Chitwan Saharia, William Chan, Saurabh Saxena, Lala Li, Jay Whang, Emily L Denton, Kamyar Ghasemipour, Raphael Gontijo Lopes, Burcu Karagol Ayan, Tim Salimans, et al. Photorealistic text-to-image diffusion models with deep language understanding. Advances in neural information...
2022
-
[53]
Denoising diffusion implicit models
Jiaming Song, Chenlin Meng, and Stefano Ermon. Denoising diffusion implicit models. arXiv preprint arXiv:2010.02502, 2020 a
2010 arXiv
-
[54]
Score-based generative modeling through stochastic differential equations
Yang Song, Jascha Sohl-Dickstein, Diederik P Kingma, Abhishek Kumar, Stefano Ermon, and Ben Poole. Score-based generative modeling through stochastic differential equations. arXiv preprint arXiv:2011.13456, 2020 b
2011 arXiv
-
[55]
Parasol: Parametric style control for diffusion image synthesis
Gemma Canet Tarr \'e s, Dan Ruta, Tu Bui, and John Collomosse. Parasol: Parametric style control for diffusion image synthesis. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 2432--2442, 2024
2024
-
[56]
Add-it: Training-free object insertion in images with pretrained diffusion models
Yoad Tewel, Rinon Gal, Dvir Samuel, Yuval Atzmon, Lior Wolf, and Gal Chechik. Add-it: Training-free object insertion in images with pretrained diffusion models. arXiv preprint arXiv:2411.07232, 2024
2024 arXiv
-
[57]
Towards effective usage of human-centric priors in diffusion models for text-based human image generation
Junyan Wang, Zhenhong Sun, Zhiyu Tan, Xuanbai Chen, Weihua Chen, Hao Li, Cheng Zhang, and Yang Song. Towards effective usage of human-centric priors in diffusion models for text-based human image generation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Patt...
2024
-
[58]
Stylediffusion: Controllable disentangled style transfer via diffusion models
Zhizhong Wang, Lei Zhao, and Wei Xing. Stylediffusion: Controllable disentangled style transfer via diffusion models. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 7677--7689, 2023
2023
-
[59]
Tokencompose: Text-to-image diffusion with token-level supervision
Zirui Wang, Zhizhou Sha, Zheng Ding, Yilin Wang, and Zhuowen Tu. Tokencompose: Text-to-image diffusion with token-level supervision. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 8553--8564, 2024 b
2024
-
[60]
Uncovering the disentanglement capability in text-to-image diffusion models
Qiucheng Wu, Yujian Liu, Handong Zhao, Ajinkya Kale, Trung Bui, Tong Yu, Zhe Lin, Yang Zhang, and Shiyu Chang. Uncovering the disentanglement capability in text-to-image diffusion models. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pag...
1900
-
[61]
Deep convolutional neural network for image deconvolution
Li Xu, Jimmy S Ren, Ce Liu, and Jiaya Jia. Deep convolutional neural network for image deconvolution. Advances in neural information processing systems, 27, 2014
2014
-
[62]
Attngan: Fine-grained text to image generation with attentional generative adversarial networks
Tao Xu, Pengchuan Zhang, Qiuyuan Huang, Han Zhang, Zhe Gan, Xiaolei Huang, and Xiaodong He. Attngan: Fine-grained text to image generation with attentional generative adversarial networks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages ...
2018
-
[63]
Dynamic prompt learning: Addressing cross-attention leakage for text-based image editing
Fei Yang, Shiqi Yang, Muhammad Atif Butt, Joost van de Weijer, et al. Dynamic prompt learning: Addressing cross-attention leakage for text-based image editing. Advances in Neural Information Processing Systems, 36: 0 26291--26303, 2023
2023
-
[64]
Ip-adapter: Text compatible image prompt adapter for text-to-image diffusion models.(2023)
Hu Ye, Jun Zhang, Sibo Liu, Xiao Han, and Wei Yang. Ip-adapter: Text compatible image prompt adapter for text-to-image diffusion models.(2023). arXiv preprint arXiv:2308.06721, 2023
2023 arXiv
-
[65]
Semantic image inpainting with deep generative models
Raymond A Yeh, Chen Chen, Teck Yian Lim, Alexander G Schwing, Mark Hasegawa-Johnson, and Minh N Do. Semantic image inpainting with deep generative models. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 5485--5493, 2017
2017
-
[66]
Generative image inpainting with contextual attention
Jiahui Yu, Zhe Lin, Jimei Yang, Xiaohui Shen, Xin Lu, and Thomas S Huang. Generative image inpainting with contextual attention. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 5505--5514, 2018
2018
-
[67]
Exploring diffusion time-steps for unsupervised representation learning
Zhongqi Yue, Jiankun Wang, Qianru Sun, Lei Ji, Eric I Chang, Hanwang Zhang, et al. Exploring diffusion time-steps for unsupervised representation learning. arXiv preprint arXiv:2401.11430, 2024
2024 arXiv
-
[68]
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 Proceedings of the IEEE/CVF international conference on computer vision, pages 3836--3847, 2023 a
2023
-
[69]
Controlvideo: Training-free controllable text-to-video generation
Yabo Zhang, Yuxiang Wei, Dongsheng Jiang, Xiaopeng Zhang, Wangmeng Zuo, and Qi Tian. Controlvideo: Training-free controllable text-to-video generation. arXiv preprint arXiv:2305.13077, 2023 b
2023 arXiv
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.