REVIEW 4 major objections 5 minor 41 references
APT: Adaptive Personalized Training for Diffusion Models with Limited Data
T0 review · 4 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read APT proposes a per-noise-level overfitting indicator that adapts augmentation and loss weighting, plus feature-statistic and cross-attention regularizers, so diffusion models can be personalized on a few images without losing prior…
desk verdict Solid empirical recipe for few-shot diffusion personalization, but the adaptive core is under-built and the quantitative claims need tightening. 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 load-bearing mechanism is the per-bin overfitting indicator $$\gamma_t = 1 - $e^{{-T(\mathrm{EMA}}$_t[L^\phi_{\mathrm{DM}}]-\mathrm{EMA}_t[L^\theta_{\mathrm{DM}}])},$$ where $\phi$ is the pretrained model, $\theta$ is the fine-tuned model, $L_{\mathrm{DM}}$ is the denoising loss, and the EMA is computed per time-step bin (for example, 10 bins across 1000 steps). The indicator drives augmentation probability $p_{\mathrm{augment}}=\mathrm{clamp}(\gamma_t,0,p_{\max})$ and scales the denoising loss to $L^{\mathrm{apt}}_{\mathrm{DM}}=(1-\gamma_t)L_{\mathrm{DM}}$. Two auxiliary losses reinforce the anchor: $L_\mu+L_\sigma$ matches the mean and variance of the U-Net's intermediate feature maps between $\theta$ and $\phi$, and $L_{\mathrm{attn}}$ aligns the fine-tuned model's summed cross-attention maps with the pretrained model's, so all text tokens keep their original semantic relationships. The total objective is $$L_{\mathrm{total}}=$L^{{\mathrm{apt}}$}_{\mathrm{DM}}+\lambda_{\mathrm{dist}}(L_\mu+L_\$\sigma$)+\lambda_{\mathrm{attn}}L_{\mathrm{attn}},$$ which combines the adaptive denoising loss with the two anchoring regularizers.
What would settle it
Measure the pretrained model's denoising loss on the reference images before any fine-tuning and compare it with the loss on images the base model handles well. If the reference loss is substantially higher, the indicator's baseline is inflated, and any drop in the fine-tuned model's loss will look like overfitting even when the model is only adapting to an unfamiliar subject. A second check is to rerun the SDXL recipe on Stable Diffusion V2.1 while keeping $T$ rather than $T/10$ in the exponent; if training becomes unstable, the indicator's normalization is not portable across base models.
Extended reading notes
Core claim
APT's claim is that overfitting in few-shot personalization is not uniform across the diffusion process: it appears first and strongest at low-noise time steps, where the model memorizes fine details. The method detects this with a per-bin overfitting indicator $\gamma_t$, computed from the exponential-moving-average gap between the pretrained model's denoising loss and the fine-tuned model's loss on the same batch, and uses $\gamma_t$ both as the probability of applying affine augmentation and as a multiplier $(1-\gamma_t)$ on the denoising loss. Two regularizers then pin the fine-tuned model to the pretrained one: a representation-stabilization loss that matches the mean and variance of intermediate U-Net feature maps, and an attention-alignment loss that matches the summed cross-attention maps, over heads and across all text tokens, to the pretrained model's maps. The paper argues that together these components keep the denoising trajectory close to the original model's, so generated images preserve scene context, style, and text alignment while still capturing the reference subject's identity.
Load-bearing premise
The load-bearing premise is that the gap between the pretrained model's denoising loss and the fine-tuned model's loss on the same training images is a faithful measure of memorization, after one exponential formula turns it into a per-noise-level number; if the reference images are simply unusual for the base model, the indicator mistakes unfamiliarity for overfitting and the adaptive augmentation and loss suppression are aimed at the wrong cause.
Editorial extensions
If this is right
- Fine-tuning on 4–5 images no longer has to sacrifice the base model's text alignment: the adaptive loss weighting suppresses updates in time bins that are memorizing, while other bins continue learning the subject.
- Generated images stay contextually coherent, with objects placed in scenes, styles, or human contexts that never appeared in the reference set, because the cross-attention maps stay pinned to the pretrained model's.
- The per-bin indicator provides an interpretable training-time signal of where overfitting starts, which could be logged during any personalization run to show which noise levels are drifting.
- The same three-part recipe transfers to a smaller base model, Stable Diffusion V2.1, with only a change in the indicator's exponent, suggesting the mechanism is not specific to SDXL.
- Prior-preservation evaluation, comparing the personalized model's output distribution with the base model's distribution via FID, precision, and recall, becomes a standard way to measure personalization quality.
Reading between the lines
- Beyond the paper: $\gamma_t$ could serve as a general-purpose memorization diagnostic for other diffusion fine-tuning settings, not just personalization, since it compares the fine-tuned model's per-noise-level loss to the frozen prior's.
- Beyond the paper: because representation stabilization matches only the mean and variance of feature maps, it may be acting against feature-collapse or rank collapse in the U-Net; a testable extension is to measure effective feature rank under APT versus DreamBooth.
- Beyond the paper: the paper's own 'monster toy' limitation indicates that the attention-alignment weight $\lambda_{\mathrm{attn}}$ will need to be concept-dependent; a natural follow-up is an automatic per-concept schedule for this weight.
- Beyond the paper: the paired forward pass through both models could be relaxed if $\gamma_t$ were estimated from the fine-tuned model's loss history alone, which would reduce the memory overhead and widen applicability.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes APT, a framework for personalizing text-to-image diffusion models when only a few reference images are available. APT combines three components: (i) adaptive training adjustment, which uses an overfitting indicator gamma_t to modulate data augmentation probability and loss weighting per time-step bin; (ii) representation stabilization, which regularizes the mean and variance of intermediate U-Net activations toward the pretrained model; and (iii) attention alignment, which matches cross-attention maps (averaged over heads) to the pretrained model. The method is evaluated on SDXL using DreamBooth and Textual Inversion datasets, with qualitative comparisons, a user study, and an ablation. The authors claim that APT mitigates overfitting, preserves prior knowledge, and maintains text alignment better than existing methods.
Significance. If the adaptive indicator were a reliable measure of overfitting, the method would be a practical contribution to few-shot personalization, where overfitting and loss of prior knowledge are central problems. The paper provides a fairly extensive ablation and a user study, and the qualitative results are compelling. However, the quantitative support is weakened by two structural issues: the headline FID metric measures closeness to an SDXL-generated source, which is the very property the regularizers enforce, and the adaptive indicator is an uncalibrated raw loss gap that is used without clamping in the loss weighting. The lack of error bars and the small numerical differences in text-alignment metrics make the quantitative superiority claims uncertain. The core idea is still defensible, but these load-bearing points need to be addressed.
major comments (4)
- [Section 3.1, Eq. (1)-(3)] The overfitting indicator gamma_t is an uncalibrated raw EMA loss gap scaled by T, and it is used without clamping in Eq. (3). When L_theta exceeds L_phi, gamma_t becomes negative and (1 - gamma_t) amplifies the diffusion loss, which is the opposite of the stated adaptive suppression. The manual change from T to T/10 for SD2.1 reported in Supp. B.4 indicates that the absolute scale of the gap is model-dependent, so the claim that the formulation ensures gamma_t = 0 without overfitting and gamma_t -> 1 with maximal overfitting is not supported. The indicator also cannot distinguish memorization from legitimate learning of a new concept, both of which reduce L_theta below L_phi.
- [Section 4.3, Table 1] The FID, Precision, and Recall values are computed between an SDXL-generated source dataset and a target dataset generated by each personalized model. Because the proposed regularizers in Eqs. (4)-(6) explicitly pull the fine-tuned model's features, statistics, and attention maps toward the pretrained SDXL model, this metric largely measures how well the method achieves its own objective. The paper should reposition this as a prior-preservation metric or report FID against the real reference distribution (with appropriate caveats about the small sample size). As it stands, the quantitative claim of 'outperforms existing methods' rests on a partially circular evaluation.
- [Table 1 and Section 4.3] No error bars, multiple seeds, or statistical tests are reported. The text-image similarity improvements are very small (CLIP-T: 0.661 to 0.664; HPSv2: 0.272 to 0.288), and without variance estimates it is impossible to judge whether these differences are meaningful. Similarly, the DINOv2 similarity of APT (0.660) is lower than all baselines except the pretrained prior, which the authors attribute to scene context; this trade-off between identity preservation and prior preservation should be quantified (e.g., with object-centric crops or a dedicated identity metric) rather than only explained qualitatively.
- [Section 3.2, Eq. (4)-(5)] The representation stabilization losses compare activations of the fine-tuned model conditioned on the identifier c* against activations of the pretrained model conditioned on the class token c. This enforces that the feature statistics for the new concept match those of the general class, which may be too strong a prior when the concept is visually distinct from the class. The paper does not analyze how the choice of the class token affects the identity–prior balance, despite this being central to the personalization task.
minor comments (5)
- [Section 2] The text refers to 'Custom Diffision' in the Related Work section; the correct name is 'Custom Diffusion' as used in the references.
- [Section 3.1, Eq. (1)] The notation EMA_t is not precise: it should state that a separate exponential moving average is maintained for each time-step bin, and how the bin boundaries (e.g., 10 bins of 100 steps each) are defined in the formula.
- [References] References [6] and [7] are duplicated entries for the same CFG++ paper; one should be removed and the citation numbering adjusted.
- [Figure 1] The phrase 'lifting a barbel' should be 'barbell'.
- [Section 4.4] The user study reports only the overall preference percentages; providing per-prompt agreement or a measure of inter-rater variability would strengthen the claim.
Circularity Check
No significant circularity: APT's adaptive indicator and regularizers are explicit control heuristics, and its headline evaluations are held-out comparisons rather than re-statements of the training losses.
full rationale
I walked the derivation chain. The overfitting indicator (Eq. 1) is a heuristic based on the EMA gap between pretrained and fine-tuned denoising losses; it is not derived from a claim about overfitting, and the adaptive weighting (Eq. 3) is a feedback mechanism, not a prediction. The representation and attention regularizers (Eqs. 4-6) explicitly pull the fine-tuned model toward the pretrained model, so the FID-vs-SDXL and user-study 'prior similarity' results are aligned with the objective, but FID is computed on generated images and is not identical to any training loss, so no result is forced by construction. There are no load-bearing self-citations: the cited DCO, DreamBooth, and AttnDreamBooth works are external. The paper's own Limitations section acknowledges hyperparameter sensitivity, and Supp. B.4's T/10 adjustment raises calibration concerns about gamma_t, but these are correctness risks, not circularity. Ablations and the user study provide independent empirical content. Thus the paper's central claims are not definitional or fitted-input-as-prediction, and the derivation is self-contained against external benchmarks.
Assumptions & free parameters
free parameters (9)
- Exponential scaling coefficient in gamma (T) =
T=1000 for SDXL; T/10=100 for SD V2.1
- Maximum augmentation probability pmax =
0.8
- Representation stabilization weight lambda_dist =
30
- Attention alignment weight lambda_attn =
3e-4
- EMA smoothing factor alpha =
0.1
- Number of timestep bins B =
10
- Layer choices for RS and AA =
Upblocks at 32x32 and 64x64
- Augmentation ranges =
zoom-out 1-3x, rotation +/-15 deg
- Loss weighting scheme (1-gamma) =
linear downscaling
assumptions (4)
- domain assumption The difference between the pretrained model's loss and the fine-tuned model's loss, exponentially transformed, is a monotonic measure of overfitting at each timestep bin.
- domain assumption The class-token conditioning c (e.g., 'dog') is a valid semantic reference for the identifier token V* of the specific instance.
- domain assumption Preserving the pretrained model's intermediate feature statistics and cross-attention maps preserves 'prior knowledge' and improves text alignment.
- ad hoc to paper The exponential mapping gamma = 1 - e^{-T*delta} is a reasonable normalization for the loss difference.
Cite this review
Pith. "Pith review of APT: Adaptive Personalized Training for Diffusion Models with Limited Data." pith.science (2026). https://pith.science/paper/KYTWC5FG
@misc{pith2026250702687,
author = {Pith},
title = {Pith review of: APT: Adaptive Personalized Training for Diffusion Models with Limited Data},
year = {2026},
howpublished = {\url{https://pith.science/paper/KYTWC5FG}},
note = {Machine review of arXiv:2507.02687}
}
read the original abstract
Personalizing diffusion models using limited data presents significant challenges, including overfitting, loss of prior knowledge, and degradation of text alignment. Overfitting leads to shifts in the noise prediction distribution, disrupting the denoising trajectory and causing the model to lose semantic coherence. In this paper, we propose Adaptive Personalized Training (APT), a novel framework that mitigates overfitting by employing adaptive training strategies and regularizing the model's internal representations during fine-tuning. APT consists of three key components: (1) Adaptive Training Adjustment, which introduces an overfitting indicator to detect the degree of overfitting at each time step bin and applies adaptive data augmentation and adaptive loss weighting based on this indicator; (2)Representation Stabilization, which regularizes the mean and variance of intermediate feature maps to prevent excessive shifts in noise prediction; and (3) Attention Alignment for Prior Knowledge Preservation, which aligns the cross-attention maps of the fine-tuned model with those of the pretrained model to maintain prior knowledge and semantic coherence. Through extensive experiments, we demonstrate that APT effectively mitigates overfitting, preserves prior knowledge, and outperforms existing methods in generating high-quality, diverse images with limited reference data.
Figures
Figures from the paper (9 more)
Reference graph
Works this paper leans on
-
[1]
Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ah- mad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774 ,
-
[2]
A neural space-time representation for text- to-image personalization
Yuval Alaluf, Elad Richardson, Gal Metzer, and Daniel Cohen-Or. A neural space-time representation for text- to-image personalization. ACM Transactions on Graphics (TOG), 42(6):1–10, 2023. 3, 13, 17
work page 2023
-
[3]
Break-a-scene: Extracting multi- ple concepts from a single image
Omri Avrahami, Kfir Aberman, Ohad Fried, Daniel Cohen- Or, and Dani Lischinski. Break-a-scene: Extracting multi- ple concepts from a single image. In SIGGRAPH Asia 2023 Conference Papers, pages 1–12, 2023. 2
2023
-
[4]
Improving image generation with better captions
James Betker, Gabriel Goh, Li Jing, Tim Brooks, Jianfeng Wang, Linjie Li, Long Ouyang, Juntang Zhuang, Joyce Lee, Yufei Guo, et al. Improving image generation with better captions. Computer Science. https://cdn. openai. com/papers/dall-e-3. pdf, 2(3):8, 2023. 2
2023
-
[5]
Microsoft coco captions: Data collection and evaluation server
Xinlei Chen, Hao Fang, Tsung-Yi Lin, Ramakrishna Vedan- tam, Saurabh Gupta, Piotr Doll ´ar, and C Lawrence Zitnick. Microsoft coco captions: Data collection and evaluation server. arXiv preprint arXiv:1504.00325, 2015. 7
arXiv 2015
-
[7]
Cfg++: Manifold-constrained clas- sifier free guidance for diffusion models
Hyungjin Chung, Jeongsol Kim, Geon Yeong Park, Hyelin Nam, and Jong Chul Ye. Cfg++: Manifold-constrained clas- sifier free guidance for diffusion models. arXiv preprint arXiv:2406.08070, 2024. 2
arXiv 2024
-
[8]
An image is worth one word: Personalizing text-to-image generation using textual inversion
Rinon Gal, Yuval Alaluf, Yuval Atzmon, Or Patashnik, Amit Haim Bermano, Gal Chechik, and Daniel Cohen-or. An image is worth one word: Personalizing text-to-image generation using textual inversion. In ICLR, 2022. 2, 3, 5, 13, 17
work page 2022
-
[9]
Svdiff: Compact param- eter space for diffusion fine-tuning
Ligong Han, Yinxiao Li, Han Zhang, Peyman Milanfar, Dimitris Metaxas, and Feng Yang. Svdiff: Compact param- eter space for diffusion fine-tuning. In Proceedings of the IEEE/CVF International Conference on Computer Vision , pages 7323–7334, 2023. 2, 3
work page 2023
Show all 41 references
-
[10]
Efficient diffu- sion training via min-snr weighting strategy
Tiankai Hang, Shuyang Gu, Chen Li, Jianmin Bao, Dong Chen, Han Hu, Xin Geng, and Baining Guo. Efficient diffu- sion training via min-snr weighting strategy. In Proceedings of the IEEE/CVF International Conference on Computer Vi- sion, pages 7441–7451, 2023. 12
2023
-
[11]
Vico: Plug-and-play visual condition for personalized text-to-image generation
Shaozhe Hao, Kai Han, Shihao Zhao, and Kwan-Yee K Wong. Vico: Plug-and-play visual condition for personalized text-to-image generation. arXiv preprint arXiv:2306.00971,
-
[12]
Classifier-free diffusion guidance
Jonathan Ho and Tim Salimans. Classifier-free diffusion guidance. In NeurIPS 2021 Workshop on Deep Generative Models and Downstream Applications, 2021. 2, 11
2021
-
[13]
Denoising diffu- sion probabilistic models
Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffu- sion probabilistic models. NeurIPS, 33:6840–6851, 2020. 2, 12
2020
-
[14]
Lora: Low- rank adaptation of large language models
Edward J Hu, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, Weizhu Chen, et al. Lora: Low- rank adaptation of large language models. In International Conference on Learning Representations, 2022. 3, 5, 11
2022
-
[15]
Training generative adver- sarial networks with limited data
Tero Karras, Miika Aittala, Janne Hellsten, Samuli Laine, Jaakko Lehtinen, and Timo Aila. Training generative adver- sarial networks with limited data. Advances in neural infor- mation processing systems, 33:12104–12114, 2020. 3
2020
-
[16]
Multi-concept customization of text-to-image diffusion
Nupur Kumari, Bingliang Zhang, Richard Zhang, Eli Shechtman, and Jun-Yan Zhu. Multi-concept customization of text-to-image diffusion. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 1931–1941, 2023. 3, 5, 7
1931
-
[17]
Direct consistency optimization for compositional text- to-image personalization
Kyungmin Lee, Sangkyung Kwak, Kihyuk Sohn, and Jinwoo Shin. Direct consistency optimization for compositional text- to-image personalization. NeurIPS, 2024. 2, 3, 5, 7, 11, 15, 16
2024
-
[18]
Decoupled weight de- cay regularization
Ilya Loshchilov and Frank Hutter. Decoupled weight de- cay regularization. In International Conference on Learning Representations, 2019. 11
2019
-
[19]
Glide: Towards photorealistic image generation and editing with text-guided diffusion models.arXiv preprint arXiv:2112.10741, 2021
Alex Nichol, Prafulla Dhariwal, Aditya Ramesh, Pranav Shyam, Pamela Mishkin, Bob McGrew, Ilya Sutskever, and Mark Chen. Glide: Towards photorealistic image generation and editing with text-guided diffusion models.arXiv preprint arXiv:2112.10741, 2021. 2
2021 arXiv
-
[20]
Dinov2: Learning robust visual features without supervision
Maxime Oquab, Timoth ´ee Darcet, Th ´eo Moutakanni, Huy V o, Marc Szafraniec, Vasil Khalidov, Pierre Fernandez, Daniel Haziza, Francisco Massa, Alaaeldin El-Nouby, et al. Dinov2: Learning robust visual features without supervision. arXiv preprint arXiv:2304.07193, 2023. 7
2023 arXiv
-
[21]
Attndream- booth: Towards text-aligned personalized text-to-image gen- eration
Lianyu Pang, Jian Yin, Baoquan Zhao, et al. Attndream- booth: Towards text-aligned personalized text-to-image gen- eration. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2024. 2, 3, 13, 17
2024
-
[22]
Sdxl: Im- proving latent diffusion models for high-resolution image synthesis
Dustin Podell, Zion English, Kyle Lacey, et al. Sdxl: Im- proving latent diffusion models for high-resolution image synthesis. In ICLR, 2024. 5, 11, 12
2024
-
[23]
Controlling text-to-image diffusion by orthogo- nal finetuning
Zeju Qiu, Weiyang Liu, Haiwen Feng, Yuxuan Xue, Yao Feng, Zhen Liu, Dan Zhang, Adrian Weller, and Bernhard Sch¨olkopf. Controlling text-to-image diffusion by orthogo- nal finetuning. Advances in Neural Information Processing Systems, 36:79320–79362, 2023. 13, 17
2023
-
[24]
Learning transferable visual models from natural language supervi- sion
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learning transferable visual models from natural language supervi- sion. In International conference on machine learning, ...
2021
-
[25]
Hierarchical text-conditional image gener- ation with clip latents
Aditya Ramesh, Prafulla Dhariwal, Alex Nichol, Casey Chu, and Mark Chen. Hierarchical text-conditional image gener- ation with clip latents. arXiv preprint arXiv:2204.06125, 1 (2):3, 2022. 2
2022 arXiv
-
[26]
High-resolution image syn- thesis with latent diffusion models
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj¨orn Ommer. High-resolution image syn- thesis with latent diffusion models. In CVPR, pages 10684– 10695, 2022. 2, 12
2022
-
[27]
Dreambooth: Fine tuning text-to-image diffusion models for subject-driven generation
Nataniel Ruiz, Yuanzhen Li, Varun Jampani, Yael Pritch, Michael Rubinstein, and Kfir Aberman. Dreambooth: Fine tuning text-to-image diffusion models for subject-driven generation. In CVPR, pages 22500–22510, 2023. 2, 3, 5, 7, 12, 13, 15, 16, 17
2023
-
[28]
Palette: Image-to-image diffusion models
Chitwan Saharia, William Chan, Huiwen Chang, Chris Lee, Jonathan Ho, Tim Salimans, David Fleet, and Mohammad Norouzi. Palette: Image-to-image diffusion models. In ACM SIGGRAPH 2022 conference proceedings, pages 1–10,
2022
-
[29]
Photorealistic text-to-image diffusion models with deep language understanding
Chitwan Saharia, William Chan, Saurabh Saxena, Lala Li, Jay Whang, Emily Denton, Seyed Kamyar Seyed Ghasemipour, Burcu Karagol Ayan, S Sara Mahdavi, Raphael Lopes, et al. Photorealistic text-to-image diffusion models with deep language understanding. NeurIPS, 2022. 2
2022
-
[30]
Assessing generative models via precision and recall
Mehdi SM Sajjadi, Olivier Bachem, Mario Lucic, Olivier Bousquet, and Sylvain Gelly. Assessing generative models via precision and recall. Advances in neural information pro- cessing systems, 31, 2018. 7
2018
-
[31]
Rethinking the spatial inconsistency in classifier- free diffusion guidance
Dazhong Shen, Guanglu Song, Zeyue Xue, Fu-Yun Wang, and Yu Liu. Rethinking the spatial inconsistency in classifier- free diffusion guidance. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 9370–9379, 2024. 2
2024
-
[32]
Face2diffusion for fast and editable face personalization
Kaede Shiohara and Toshihiko Yamasaki. Face2diffusion for fast and editable face personalization. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 6850–6859, 2024. 2
2024
-
[33]
Denois- ing diffusion implicit models
Jiaming Song, Chenlin Meng, and Stefano Ermon. Denois- ing diffusion implicit models. In ICLR, 2020. 2
2020
-
[34]
p+: Extended textual conditioning in text-to- image generation
Andrey V oynov, Qinghao Chu, Daniel Cohen-Or, and Kfir Aberman. p+: Extended textual conditioning in text-to- image generation. arXiv preprint arXiv:2303.09522, 2023. 3
2023 arXiv
-
[35]
Human preference score v2: A solid benchmark for evaluating human preferences of text-to-image synthesis
Xiaoshi Wu, Yiming Hao, Keqiang Sun, Yixiong Chen, Feng Zhu, Rui Zhao, and Hongsheng Li. Human preference score v2: A solid benchmark for evaluating human preferences of text-to-image synthesis. arXiv preprint arXiv:2306.09341 ,
-
[36]
Scaling autoregres- sive models for content-rich text-to-image generation
Jiahui Yu, Yuanzhong Xu, Jing Yu Koh, Thang Luong, Gun- jan Baid, Zirui Wang, Vijay Vasudevan, Alexander Ku, Yin- fei Yang, Burcu Karagol Ayan, et al. Scaling autoregres- sive models for content-rich text-to-image generation. arXiv preprint arXiv:2206.10789, 2(3):5, 2022. 2
2022 arXiv
-
[37]
Jedi: Joint- image diffusion models for finetuning-free personalized text- to-image generation
Yu Zeng, Vishal M Patel, Haochen Wang, Xun Huang, Ting- Chun Wang, Ming-Yu Liu, and Yogesh Balaji. Jedi: Joint- image diffusion models for finetuning-free personalized text- to-image generation. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recogni...
2024
-
[38]
Attention calibration for disentangled text-to-image person- alization
Yanbing Zhang, Mengping Yang, Qin Zhou, and Zhe Wang. Attention calibration for disentangled text-to-image person- alization. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 4764– 4774, 2024. 2
2024
-
[39]
zoomed-in
Zhengli Zhao, Sameer Singh, Honglak Lee, Zizhao Zhang, Augustus Odena, and Han Zhang. Improved consistency reg- ularization for gans. In Proceedings of the AAAI conference on artificial intelligence, pages 11033–11041, 2021. 3 APT: Adaptive Personalized Training for Diffusion ...
2021
-
[40]
Text Alignment: Does the generated image align well with the given text prompt?
-
[41]
Identity Preservation: Is the generated image similar to the reference images?
-
[42]
Figure 12 shows the interface presented to users during the study
Prior Similarity: Is the generated image similar to the composition of the prior image generated by the pre- trained model? Participants are instructed to choose the image that best met all the criteria. Figure 12 shows the interface presented to users during the study. The re...
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.