Pith. sign in

REVIEW 4 major objections 6 minor 45 references

Optimizing Multi-Round Enhanced Training in Diffusion Models for Improved Preference Understanding

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

Pith's one-line read A multi-round dialogue loop with diversity, consistency, and a DPO-trained preference reward can steer diffusion image generation to match user intent better than single-shot models.

desk verdict A plausible multi-turn reward-tuning pipeline undermined by invalid theory, a mislabeled reward model, and circular evaluation. read the letter →

arxiv 2504.18204 v1 pith:TLK4TGR4 submitted 2025-04-25 cs.CV

classification cs.CV
keywords multi-rounddialoguetext-to-imagegenerationdiffusionmodelshumanpreferencealignmentrewardmodelLoRAfine-tuningmutualinformationhuman-in-the-loop
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

The paper tries to establish that text-to-image generation gets better when optimization spans the whole multi-round conversation rather than a single prompt. It introduces Visual Co-Adaptation (VCA): an LLM refines the prompt at each round, a DPO-trained reward model built on Qwen-VL scores how well each candidate image matches user intent, and PPO tunes LoRA adapters inside Stable Diffusion to maximize a reward that combines diversity, inter-round consistency, and that preference score. The authors construct a large multi-turn dialogue dataset of prompt-image pairs and report that VCA surpasses existing systems in user satisfaction, win rates, modality-switching accuracy, and visual consistency, especially in multi-turn settings. If the paper is right, iterative user feedback becomes usable as a direct training signal for diffusion models without retraining the full backbone.

What carries the argument

The load-bearing object is the dynamic total reward $R_{\mathrm{total}}(t) = \lambda_{\mathrm{div}}(t) R_{\mathrm{div}} + \lambda_{\mathrm{cons}}(t) R_{\mathrm{cons}} + \lambda_{\mathrm{MI}}(t) R_{\mathrm{MI}}$, with $\lambda_{\mathrm{div}}(t)=e^{-\alpha t}$, $\lambda_{\mathrm{cons}}(t)=1-e^{-\beta t}$, and $\lambda_{\mathrm{MI}}(t)=\frac12 e^{-\gamma t}$. $R_{\mathrm{div}}$ pushes early-round samples apart in the U-Net feature space, $R_{\mathrm{cons}}$ rewards cosine similarity between consecutive dialogue rounds, and $R_{\mathrm{MI}}$, called the preference score, comes from a Qwen-VL model fine-tuned with DPO on positive/negative image pairs. PPO converts $R_{\mathrm{total}}$ into gradient updates for LoRA adapters inserted in the attention layers, while the base diffusion weights stay fixed. The time-dependent weights shift training from exploration (diversity) to stability (consistency) and intent alignment as dialogue rounds proceed.

What would settle it

Collect independent human preference judgments on held-out multi-turn dialogues and compare the orderings produced by the $R_{\mathrm{MI}}$ preference score, CLIP, aesthetic, and BLIP scores; if the preference score does not match human rankings better than the other metrics, or if PPO updates that raise $R_{\mathrm{MI}}$ lower human satisfaction, the central claim fails.

Watch

Extended reading notes

Core claim

The central claim is that mutual-information maximization—implemented as a preference score from a Qwen-VL reward model trained with DPO—captures user intent more faithfully than both standard reinforcement learning and CLIP-style metrics, and that this reward can guide a multi-round diffusion process. The paper argues that optimizing $R_{\mathrm{total}}$ with PPO while updating only LoRA adapters produces images that are diverse in early rounds, consistent across rounds, and increasingly aligned with the user's stated intent. In the reported evaluations, the method ranks first on human satisfaction, BLIP and CLIP scores, and the number of dialogue rounds needed, and it outperforms baseline models in win rates across eight dialogue rounds.

Load-bearing premise

The load-bearing premise is that the DPO-trained Qwen-VL reward model's preference score is a faithful and stable proxy for what human users actually want across dialogue rounds, so that PPO updates driven by it improve real intent rather than a heuristic artifact.

Editorial extensions

If this is right

  • Interactive text-to-image systems can be trained directly on multi-round dialogue data, so each user refinement becomes part of the learning signal rather than a one-off edit.
  • A time-dependent reward schedule offers a general recipe for balancing exploration and convergence in iterative generative tasks.
  • A DPO-trained vision-language reward model can serve as a reusable preference oracle that is more discriminative than CLIP for selecting images that match intent.
  • LoRA-based reward-driven updates let a diffusion model be adapted to new preferences without retraining the full backbone, making per-user or per-dialogue personalization feasible.

Reading between the lines

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

  • The same reward decomposition could transfer to other iterative generative settings—image editing, video generation, or embodied instruction following—with the dynamic weighting schedule as the reusable component.
  • Because the reward model's negative examples are built by heuristics (low-scoring images, random mismatches, LLM-generated unrelated images), a testable prediction is that the preference score is vulnerable to shortcuts based on surface style rather than genuine intent; independent human labels would settle this.
  • An extension the paper does not explore is replacing the fixed DPO-trained reward with the user's own in-dialogue selections, which would make co-adaptation fully personal and remove the need for a separate reward model.
  • The convergence results assume the prompt-refinement process reaches an ideal fixed point; taken literally, this predicts that remaining failures will concentrate in the LLM's prompt-update step rather than in the diffusion sampler.
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

4 major / 6 minor

Summary. The paper proposes Visual Co-Adaptation (VCA), a framework for multi-round, human-in-the-loop text-to-image generation. It constructs multi-turn dialogue prompt-image datasets, trains a reward model by applying DPO to Qwen-VL, and fine-tunes Stable Diffusion v2.1 with LoRA using a total reward that combines diversity, consistency, and a so-called mutual information term. The authors state two theorems: convergence of the multi-round latent distribution to a target distribution in total variation (Theorem 3.1), and convergence of the dynamically weighted reward optimization to the Pareto optimal set (Theorem 3.2). The experimental section compares VCA with several text-to-image baselines on preference scores, CLIP/BLIP/LPIPS, modality-switching tasks, ablations, and a 2706-user human evaluation, concluding that VCA is consistently superior, especially in multi-turn dialogue scenarios.

Significance. If the claims were substantiated, the framework would be a practically useful contribution to interactive text-to-image generation, and the described multi-turn dialogue dataset could be a reusable resource. The paper has concrete strengths: a large constructed dataset, a systematic combination of three reward terms, ablations of the reward components, and a clear system design. However, the evaluation is compromised by the fact that the headline 'preference score' is the same DPO-trained reward used as the training objective, the human study lacks statistical detail, and the theoretical results are not correct as stated. In its current form, the paper does not establish its central claims; the useful components could be salvaged only with substantially revised evaluation and theory.

major comments (4)
  1. [Theoretical Analysis in §3.1 and Appendix A.1 (Theorem 3.1, Eq. 7)] Theorem 3.1 is mathematically invalid as stated. The proof explicitly identifies the limiting object p_target with a Dirac delta, but each iterate p_T is an absolutely continuous Gaussian density. Total variation distance between an absolutely continuous probability measure and a Dirac measure is 1, not 0, and Scheffé's lemma cannot be invoked because the limit is not a density. The argument that pointwise convergence p_T(z) to 0 for z ≠ z_target combined with distributional convergence to delta implies convergence in TV is false. Because this theorem is listed as a key contribution, the error is load-bearing.
  2. [Appendix A.2 (Theorem A.10 / Theorem 3.2)] The proof of Theorem 3.2 relies on incorrect geometric and variational claims. Cosine similarity on the unit sphere is not an affine function, and the same normalized inner product cannot be simultaneously concave for R_div and convex for R_cons as asserted. The step that dV/dt tends to 0 does not imply that the sequence z_t* converges to a maximizer, and the negative-definiteness of d^2V/dt^2 is asserted without checking the signs of the reward terms. The scalarization argument shows at most that each z_t* is Pareto optimal for its own fixed weights, not that the sequence converges to a balanced Pareto point as t tends to infinity. Thus Theorem 3.2 is unproven.
  3. [§3.2 (Eq. 10) and §4.3 (Figs. 4-6)] Eq. (10) defines R_MI = I(X;Y), but the implementation is a DPO-trained Qwen-VL model whose reward is the mean logit; no identity with mutual information is established. Figures 4, 5, and 6 evaluate methods using this same 'preference score' (R_MI). Since VCA is optimized against R_MI, comparing methods on this metric is partly circular for the claim of improved preference understanding, and the metric is never validated against independent human preference judgments. The DPO negative examples are constructed by heuristic mismatch, which may not reflect genuine user dissatisfaction in multi-turn correction. This leaves the central empirical claim unsubstantiated.
  4. [Table 1 (Human Eval)] The human evaluation is reported only as ranks and win counts for 2706 users. There are no confidence intervals, no significance tests, no inter-rater agreement measure, and the protocol description ('blind cross-over design') lacks essential details: how prompts were sampled, how many images each user saw, how the composite 0-5 scores for response time, aesthetics, intent reflection, and round number were aggregated, and whether the comparison was paired. Without this information, the conclusion that VCA 'consistently surpasses' competing models in user satisfaction is not supported by the reported evidence.
minor comments (6)
  1. [§4.5] Section 4.5 appears to duplicate the ablation paragraph from Section 4.4 ('Ablation Study on Reward Coefficient Impact'); this is likely a copy-paste error.
  2. [§3.1 (Eq. 2 vs. Eq. 6)] Notation is inconsistent: Eq. (2) writes DM(t,τ), while Eq. (6) writes DM(t); the indexing should be made uniform and precise.
  3. [Table 1 header] The header 'Lpips [38]↓ Aesthetic Score CLIP [20] ↑ BLIP [14]↑ Round↓' is confusing because the row entries alternate 'Rank' and 'Score'; clarifying which columns are ranks and which are scores would improve readability.
  4. [Figure 8] Figure 8 reports user satisfaction, BLIP, CLIP, and LPIPS curves without error bars; given the plateau claim between 10k and 15k samples, variance information is needed.
  5. [§3.2 (Eq. 10) and §4.3] The same quantity is referred to as both 'mutual information reward' and 'preference score'; this conflation should be resolved and the terminology aligned.
  6. [References] Reference [6] ('Enhancing Intent Understanding for Ambiguous prompt: A Human-Machine Co-Adaption Strategy') lacks a venue, arXiv identifier, or year, and should be completed.

Circularity Check

4 steps flagged · score 4.0 of 10

Preference-score evaluation is partly circular because the metric is the same DPO-trained reward model used to train the system; theoretical proofs also assume their conclusions. The central user-satisfaction claim retains independent human-eval grounding.

  1. fitted input called prediction [Section 3.2, Eq. (10); Section 4.3 (Figure 5 paragraph)]
    "The mutual information reward 𝐼(𝑋 ;𝑌) (In our later paper, we refer to this metric as the "preference score. ") is optimized to fine-tune the model’s outputs ... In this experiment (Figure 5), we compared the preference score win rates of various generative models ... Our model outperformed others, with the highest win rates of 0.84 against CogView 2 and 0.78 against Muse, showcasing superior handling of complex dialogues and intent capture."

    The 'preference score' used for the win-rate comparison is R_MI, the DPO-trained Qwen-VL logit-mean reward that is also the optimization target in Eq. (11) and Algorithm 1's PPO update. A model trained to maximize R_MI is therefore expected to score higher on it even if human alignment is unchanged; comparing VCA to baselines on this metric does not independently measure 'intent capture'. The paper reports no held-out human validation of R_MI itself, so the Figure 4-6 preference-score results are partly forced by the training objective.

  2. other [Appendix A.1, proof of Theorem A.4 (main-text Theorem 3.1)]
    "We assume that under the hypothesis of the multi-round diffusion process, the latent variable densities 𝑝𝑡(𝑧) (for 𝑡∈ N) converge pointwise almost everywhere to the target density 𝑝target(𝑧). ... Then, the proof proceeds as follows. Scheffé’s lemma states that if a sequence of probability densities {𝑞𝑛(𝑧)} converges pointwise almost everywhere to a probability density 𝑞(𝑧), then the total variation norm converges to zero."

    The theorem promises TV convergence from Assumptions A.1–A.3, but the proof starts by assuming exactly the pointwise convergence of densities that is the substantive content of the convergence claim. Scheffé's lemma then converts that assumed pointwise convergence into the TV conclusion. The subsequent Gaussian-density argument shows convergence in distribution to a Dirac mass, not pointwise a.e. convergence to a density, so the proof does not close the gap. The 'theoretical guarantee' is thus imported as an assumption rather than derived.

2 more flagged steps
  1. self definitional [Appendix A.2, proof of Theorem A.10 (main-text Theorem 3.2)]
    "Since the weighted-sum formulation is a scalarization of the multi-objective problem, it is well known that every optimal solution 𝑧∗𝑡 is Pareto optimal, provided the weights are strictly positive. ... Thus, we conclude that the dynamic weighting scheme yields a sequence {𝑧∗𝑡} that remains in the Pareto optimal set."

    Pareto optimality of z*_t is a standard property of weighted-sum scalarization, not a consequence of the paper's dynamics; the conclusion is built into the definition of z*_t as the maximizer of R_total. The additional dV/dt→0 argument shows only that the value of V(t) stabilizes, not that the sequence z*_t converges to a balanced Pareto point. Hence the claimed convergence to the Pareto optimal set is an artifact of how the optimizer is defined.

  2. renaming known result [Section 3.2, Eq. (10)]
    "The Mutual Information Reward is computed using a custom-trained reward model derived from Qwen-VL [2] (with the final linear layer of the Qwen-VL model removed, it calculates the logits’ mean as the reward and fine-tunes using QLoRA). The model is trained using a prompt paired with two contrasting images, each labeled with 0 or 1 to indicate poor or good alignment with human intent, and optimized through DPO. 𝑅MI = 𝐼(𝑋 ;𝑌) (10)"

    The quantity denoted R_MI is the mean logit of a DPO-trained Qwen-VL preference model, not mutual information I(X;Y). No mutual-information estimator or information-theoretic derivation is provided. Calling this DPO-style reward 'mutual information' and claiming in the contributions that 'mutual information maximization outperforms conventional RL' renames a known reward-modeling technique rather than establishing an information-theoretic objective, so the contribution statement is not supported by the equations.

full rationale

Score 4. The main empirical claim (user satisfaction) is not fully circular: Table 1 reports a 2706-user blind cross-over human evaluation and the paper also reports CLIP, BLIP, LPIPS and aesthetic scores, which are external to the R_MI reward. The VCA framework itself is an engineering contribution with independent components (LoRA fine-tuning, multi-round dialogue data, dynamic reward weighting). However, the paper's preference-score evaluation (Figures 4-6) is partly circular because the 'preference score' is the same DPO-trained Qwen-VL reward model R_MI used as the PPO optimization target, and R_MI is not validated against held-out human judgments. The theoretical 'guarantees' (Theorems 3.1 and 3.2) are also weaker than stated: the first proof assumes pointwise convergence and the second concludes Pareto optimality by the standard scalarization property. There is no load-bearing self-citation chain: reference [6] is related prior work by two of the authors, but the central results do not rest on an imported uniqueness theorem. The renaming of a DPO reward as 'mutual information' is misleading but does not by itself make the empirical comparisons circular.

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

The central method rests on a learned reward model claimed to be mutual information, on dynamic weighting coefficients chosen by hand, and on convergence theorems whose assumptions (contraction, prompt convergence, compactness, convexity) are either unverified or invalid. No code or data is released.

free parameters (3)
  • alpha, beta, gamma (dynamic reward weights) = 0.15, 0.1, 0.075
    Decay rates in the total reward Eq. (11) are chosen by hand for the experiments; no sensitivity analysis or selection procedure is reported.
  • LoRA rank and alpha for diffusion model = rank=4, alpha=4
    Architectural hyperparameters reported in Section 4.1; they affect the LoRA update but are not the central free parameters of the reward design.
  • QLoRA rank and alpha for reward model = rank=64, alpha=16
    Hyperparameters for the Qwen-VL reward model; listed for reproducibility but not load-bearing for the core claim.
assumptions (8)
  • ad hoc to paper Assumption A.1: prompt embedding sequence converges geometrically to an ideal prompt
    Stated as an assumption for Theorem 3.1; no evidence that LLM refinement achieves this.
  • ad hoc to paper Assumption A.2: the diffusion model is a beta-contraction in latent space
    Diffusion models are not contractions in general; this is a strong restriction not verified for Stable Diffusion.
  • ad hoc to paper Assumption A.3: noise variance decays as o(1/t)
    Imposed for the convergence theorem, not satisfied by standard diffusion schedulers used in experiments (T=70).
  • ad hoc to paper The limiting target p_target is identified with a Dirac delta
    Used in the proof of Theorem 3.1 despite the text calling it a target distribution; not a valid probability density.
  • ad hoc to paper Domain Z is compact and feature map f maps to the unit sphere with affine cosine properties
    Assumed inside the proof of Theorem 3.2 to claim concavity/convexity of rewards; not stated in the theorem.
  • ad hoc to paper The DPO-trained reward model approximates mutual information I(X;Y)
    No derivation connects the learned reward to mutual information; the equation R_MI = I(X;Y) is asserted without support.
  • standard math Scheffé's lemma
    Used in Theorem 3.1, but misapplied to a delta limit; Scheffé's lemma requires pointwise convergence to a probability density, which is not the case here.
  • standard math Weighted-sum maxima of continuous objectives over a compact set are Pareto optimal
    A standard result from multiobjective optimization (Miettinen 1999) used in Theorem 3.2.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Optimizing Multi-Round Enhanced Training in Diffusion Models for Improved Preference Understanding." pith.science (2026). https://pith.science/paper/TLK4TGR4

@misc{pith2026250418204,
  author       = {Pith},
  title        = {Pith review of: Optimizing Multi-Round Enhanced Training in Diffusion Models for Improved Preference Understanding},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/TLK4TGR4}},
  note         = {Machine review of arXiv:2504.18204}
}
read the original abstract

Generative AI has significantly changed industries by enabling text-driven image generation, yet challenges remain in achieving high-resolution outputs that align with fine-grained user preferences. Consequently, multi-round interactions are necessary to ensure the generated images meet expectations. Previous methods enhanced prompts via reward feedback but did not optimize over a multi-round dialogue dataset. In this work, we present a Visual Co-Adaptation (VCA) framework incorporating human-in-the-loop feedback, leveraging a well-trained reward model aligned with human preferences. Using a diverse multi-turn dialogue dataset, our framework applies multiple reward functions, such as diversity, consistency, and preference feedback, while fine-tuning the diffusion model through LoRA, thus optimizing image generation based on user input. We also construct multi-round dialogue datasets of prompts and image pairs aligned with user intent. Experiments demonstrate that our method outperforms state-of-the-art baselines, significantly improving image consistency and alignment with user intent. Our approach consistently surpasses competing models in user satisfaction, especially in multi-turn dialogue scenarios.

Figures

Figures reproduced from arXiv: 2504.18204 by the authors.

Figure 1
Figure 1. The workflow demonstrates how human prefer [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Overview of our multi-round dialogue generation process. (a) shows how prompts and feedback refine images over [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Weight changes for the different reward compo [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (6 more)
Figure 4
Figure 4. Figure 4: Comparison of Preference and CLIP scores across [PITH_FULL_IMAGE:figures/full_fig_p005_4.png]
Figure 5
Figure 5. Figure 5: Win rates between all methods [PITH_FULL_IMAGE:figures/full_fig_p005_5.png]
Figure 6
Figure 6. Figure 6: Win, tie, and lose rates of our model compared to Random, CLIP Score, Aesthetic, and BLIP Score across different [PITH_FULL_IMAGE:figures/full_fig_p006_6.png]
Figure 7
Figure 7. Figure 7: Impact of removing consistency, user alignment, [PITH_FULL_IMAGE:figures/full_fig_p006_7.png]
Figure 9
Figure 9. Figure 9: Distribution of selected datasets and visual styles. [PITH_FULL_IMAGE:figures/full_fig_p006_9.png]
Figure 10
Figure 10. Figure 10: The figure compares the performance of sd-2.1, Imagen, CogView2, DALL [PITH_FULL_IMAGE:figures/full_fig_p007_10.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

45 extracted references · 23 canonical work pages

  1. [1]

    Jinze Bai, Shuai Bai, Yunfei Chu, Zeyu Cui, Kai Dang, Xiaodong Deng, Yang Fan, Wenbin Ge, Yu Han, Fei Huang, Binyuan Hui, Luo Ji, Mei Li, Junyang Lin, Runji Lin, Dayiheng Liu, Gao Liu, Chengqiang Lu, Keming Lu, Jianxin Ma, Rui Men, Xingzhang Ren, Xuancheng Ren, Chuanqi Tan, Sinan Tan, Jianhong Tu, Peng Wang, Shijie Wang, Wei Wang, Shengguang Wu, Benfeng X...

  2. [2]

    Jinze Bai, Shuai Bai, Shusheng Yang, Shijie Wang, Sinan Tan, Peng Wang, Jun- yang Lin, Chang Zhou, and Jingren Zhou. 2023. Qwen-VL: A Versatile Vision- Language Model for Understanding, Localization, Text Reading, and Beyond. arXiv:2308.12966 [cs.CV] https://arxiv.org/abs/2308.12966

  3. [3]

    Huiwen Chang, Han Zhang, Jarred Barber, AJ Maschinot, Jose Lezama, Lu Jiang, Ming-Hsuan Yang, Kevin Murphy, William T Freeman, Michael Rubinstein, et al

  4. [4]

    Tim Dettmers, Artidoro Pagnoni, Ari Holtzman, and Luke Zettlemoyer. 2023. QLoRA: Efficient Finetuning of Quantized LLMs. arXiv:2305.14314 [cs.LG] https://arxiv.org/abs/2305.14314

  5. [5]

    Ming Ding, Wendi Zheng, Wenyi Hong, and Jie Tang. 2022. CogView2: Faster and Better Text-to-Image Generation via Hierarchical Transformers. arXiv:2204.14217 [cs.CV] https://arxiv.org/abs/2204.14217

  6. [6]

    Yangfan He, Yuxuan Bai, and Tianyu Shi. 2024. Enhancing Intent Understanding for Ambiguous prompt: A Human-Machine Co-Adaption Strategy

  7. [7]

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

  8. [8]

    Jack Hessel, Ari Holtzman, Maxwell Forbes, Ronan Le Bras, and Yejin Choi

Show all 45 references
  1. [9]

    Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen

    Edward J. Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. 2021. LoRA: Low-Rank Adaptation of Large Language Models. arXiv:2106.09685 [cs.CL] https://arxiv.org/abs/2106.09685

  2. [10]

    Chengsong Huang, Qian Liu, Bill Yuchen Lin, Tianyu Pang, Chao Du, and Min Lin. 2024. LoraHub: Efficient Cross-Task Generalization via Dynamic LoRA Composition. arXiv:2307.13269 [cs.CL] https://arxiv.org/abs/2307.13269

  3. [11]

    Minbin Huang, Yanxin Long, Xinchi Deng, Ruihang Chu, Jiangfeng Xiong, Xiao- dan Liang, Hong Cheng, Qinglin Lu, and Wei Liu. 2024. DialogGen: Multi-modal Interactive Dialogue System for Multi-turn Text-to-Image Generation

  4. [12]

    Harrison Lee, Samrat Phatale, Hassan Mansoor, Thomas Mesnard, Johan Ferret, Kellie Lu, Colton Bishop, Ethan Hall, Victor Carbune, Abhinav Rastogi, and Sushant Prakash. 2023. RLAIF: Scaling Reinforcement Learning from Human Feedback with AI Feedback. arXiv:2309.00267 [cs.CL] ht...

  5. [13]

    Kimin Lee, Hao Liu, Moonkyung Ryu, Olivia Watkins, Yuqing Du, Craig Boutilier, Pieter Abbeel, Mohammad Ghavamzadeh, and Shixiang Shane Gu. 2023. Aligning text-to-image models using human feedback

  6. [14]

    Junnan Li, Dongxu Li, Caiming Xiong, and Steven Hoi. 2022. Blip: Bootstrapping language-image pre-training for unified vision-language understanding and generation. , 12888–12900 pages

  7. [15]

    Junnan Li, Dongxu Li, Caiming Xiong, and Steven Hoi. 2022. BLIP: Bootstrapping Language-Image Pre-training for Unified Vision-Language Understanding and Generation. arXiv:2201.12086 [cs.CV] https://arxiv.org/abs/2201.12086

  8. [16]

    Youwei Liang, Junfeng He, Gang Li, Peizhao Li, Arseniy Klimovskiy, Nicholas Carolan, Jiao Sun, Jordi Pont-Tuset, Sarah Young, Feng Yang, et al. 2023. Rich Human Feedback for Text-to-Image Generation

  9. [17]

    Ziwei Liu, Ping Luo, Shi Qiu, Xiaogang Wang, and Xiaoou Tang. 2016. DeepFash- ion: Powering Robust Clothes Recognition and Retrieval with Rich Annotations

  10. [18]

    Kaisa Miettinen. 1999. Nonlinear Multiobjective Optimization

  11. [19]

    OpenAI, Josh Achiam, Steven Adler, and Sandhini Agarwal et al. 2024. GPT-4 Technical Report. arXiv:2303.08774 [cs.CL] https://arxiv.org/abs/2303.08774

  12. [20]

    Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. 2021. Learning transferable visual models from natural language supervision. , 8748–8763 pages

  13. [21]

    Manning, and Chelsea Finn

    Rafael Rafailov, Archit Sharma, Eric Mitchell, Stefano Ermon, Christopher D. Manning, and Chelsea Finn. 2024. Direct Preference Optimization: Your Language Model is Secretly a Reward Model. arXiv:2305.18290 [cs.LG] https://arxiv.org/ abs/2305.18290

  14. [22]

    Aditya Ramesh, Prafulla Dhariwal, Alex Nichol, Casey Chu, and Mark Chen

  15. [23]

    Siddharth Reddy, Sergey Levine, and Anca Dragan. 2022. First contact: Unsu- pervised human-machine co-adaptation via mutual information maximization. , 31542–31556 pages

  16. [24]

    Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Björn Ommer. 2022. High-resolution image synthesis with latent diffusion models. , 10684–10695 pages

  17. [25]

    , 3 pages

    Hierarchical text-conditional image generation with clip latents. , 3 pages

  18. [26]

    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. 2022. Photorealistic text-to-image diffusion models with deep language understanding. , 36479–36494 pages

  19. [27]

    Henry Scheffé. 1947. A Useful Convergence Theorem for Probability Distributions. Annals of Mathematical Statistics 18, 3 (1947), 434–438. https://doi.org/10.1214/ aoms/1177730386

  20. [28]

    Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Björn Ommer. 2022. High-Resolution Image Synthesis with Latent Diffusion Models. arXiv:2112.10752 [cs.CV] https://arxiv.org/abs/2112.10752

  21. [29]

    Yilin Wang, Sasi Inguva, and Balu Adsumilli. 2019. YouTube UGC dataset for video compression research. , 5 pages

  22. [30]

    Zhijie Wang, Yuheng Huang, Da Song, Lei Ma, and Tianyi Zhang. 2024. PromptCharm: Text-to-Image Generation through Multi-modal Prompting and Refinement. , 21 pages

  23. [31]

    John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov

  24. [32]

    Yi Xin, Junlong Du, Qiang Wang, Zhiwen Lin, and Ke Yan. 2024. VMT-Adapter: Parameter-Efficient Transfer Learning for Multi-Task Dense Scene Understanding. In Proceedings of the AAAI Conference on Artificial Intelligence , Vol. 38. 16085– 16093

  25. [33]

    Yi Xin, Junlong Du, Qiang Wang, Ke Yan, and Shouhong Ding. 2024. MmAP: Multi- modal Alignment Prompt for Cross-domain Multi-task Learning. In Proceedings of the AAAI Conference on Artificial Intelligence , Vol. 38. 16076–16084

  26. [34]

    Yi Xin, Siqi Luo, Xuyang Liu, Haodi Zhou, Xinyu Cheng, Christina E Lee, Junlong Du, Haozhe Wang, MingCai Chen, Ting Liu, et al. 2024. V-petl bench: A unified visual parameter-efficient transfer learning benchmark. Advances in Neural Information Processing Systems 37 (2024), 80...

  27. [35]

    Hui Wu, Yupeng Gao, Xiaoxiao Guo, Ziad Al-Halah, Steven Rennie, Kristen Grauman, and Rogerio Feris. 2020. Fashion IQ: A New Dataset Towards Retrieving Images by Natural Language Feedback. arXiv:1905.12794 [cs.CV] https://arxiv. org/abs/1905.12794

  28. [36]

    Jiazheng Xu, Xiao Liu, Yuchen Wu, Yuxuan Tong, Qinkai Li, Ming Ding, Jie Tang, and Yuxiao Dong. 2024. Imagereward: Learning and evaluating human preferences for text-to-image generation

  29. [37]

    Lidong Zeng, Zhedong Zheng, Yinwei Wei, and Tat-seng Chua. 2024. Instilling Multi-round Thinking to Text-guided Image Generation

  30. [38]

    Richard Zhang, Phillip Isola, Alexei A Efros, Eli Shechtman, and Oliver Wang

  31. [39]

    Yi Xin, Siqi Luo, Haodi Zhou, Junlong Du, Xiaohong Liu, Yue Fan, Qing Li, and Yuntao Du. 2024. Parameter-efficient fine-tuning for pre-trained vision models: A survey. arXiv preprint arXiv:2402.02242 (2024)

  32. [44]

    There exists𝛽 < 1 such that for any𝑧,𝑧′ and embedding𝜓, DM(𝑡)(𝑧,𝜓)− DM(𝑡)(𝑧′,𝜓) 2≤𝛽 𝑧−𝑧′

    (1) Assumption A.2 (Diffusion Model Stability). There exists𝛽 < 1 such that for any𝑧,𝑧′ and embedding𝜓, DM(𝑡)(𝑧,𝜓)− DM(𝑡)(𝑧′,𝜓) 2≤𝛽 𝑧−𝑧′

  33. [45]

    The noise term 𝜎𝑡 satisfies 𝜎𝑡 =𝑜 1 𝑡

    (2) Assumption A.3 (Noise Decay Condition) . The noise term 𝜎𝑡 satisfies 𝜎𝑡 =𝑜 1 𝑡 . (3) Theorem A.4 (Conditional Convergence of Multi-Round Diffusion Process. Theorem 3.1). Given a user feedback sequence{∇(𝑡) feedback}𝑇 𝑡 =1 that generates prompt sequences {𝑃𝑡}𝑇 𝑡 =1 via the ...

  34. [2017]

    arXiv:1707.06347 [cs.LG] https://arxiv.org/abs/1707.06347

    Proximal Policy Optimization Algorithms. arXiv:1707.06347 [cs.LG] https://arxiv.org/abs/1707.06347

  35. [2018]

    , 586–595 pages

    The unreasonable effectiveness of deep features as a perceptual metric. , 586–595 pages. ACMMM25 ’25, October 27–31, 2025, Dublin, Ireland Trovato et al. A THEORETICAL ANALYSIS A.1 Conditional Convergence of Multi-Round Diffusion Process Assumption A.1 (Prompt Convergence Cond...

  36. [2022]

    arXiv:2104.08718 [cs.CV] https://arxiv.org/abs/2104.08718

    CLIPScore: A Reference-free Evaluation Metric for Image Captioning. arXiv:2104.08718 [cs.CV] https://arxiv.org/abs/2104.08718

  37. [2023]

    Muse: Text-to-image generation via masked generative transformers

Pith tools

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