REVIEW 5 major objections 5 minor 2 cited by
AutoLoRA: Automatic LoRA Retrieval and Fine-Grained Gated Fusion for Text-to-Image Generation
T0 review · 5 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read AutoLoRA improves text-to-image generation by retrieving relevant LoRA adapters from their weight matrices alone and fusing them with a fine-grained gating mechanism, boosting aesthetic quality and text alignment over the base FLUX model.
desk verdict AutoLoRA has a genuinely new weight-encoding retriever and a sensible fusion mechanism, but the evaluation never measures retrieval accuracy and is partly circular; worth refereeing if the authors can add non-circular benchmarks. 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 weight-encoding LoRA retriever: each LoRA layer is turned into a token embedding by $v_i = B_i A_i q_i \hat{W}_i$, then a transformer encoder outputs a global LoRA vector that is aligned with CLIP text embeddings via the two-way contrastive loss of Eq. (3). The second mechanism is the fine-grained gated fusion module of Eq. (7), which uses three learned gates—base feature gate, LoRA-specific gate, cross-interaction gate—to produce a sigmoid gating matrix $G \in \mathbb{R}^{k \times d}$, followed by amplitude calibration with a fusion-scaling parameter $w_o$ in Eq. (8). Training uses interference-resistant sampling: a target and an interference LoRA are active but only the target's image-text pairs supervise, via the flow-matching loss of Eq. (10).
What would settle it
Give the retriever a held-out LoRA whose weights have been randomly shuffled, breaking the weight–semantics link while keeping its example renderings and captions unchanged; if the retriever still places it near its original cluster, retrieval is riding on artifacts rather than weight semantics. Likewise, replace the VLM captions in the test set with human-written prompts; if top-1 retrieval accuracy drops to chance, the measured gains are an artifact of the shared caption-generation pipeline.
Extended reading notes
Core claim
AutoLoRA's central claim is that the semantic content of a LoRA—what style or subject it adds—is readable from its weight matrices alone. The paper builds a LoRA encoder that treats each linear layer's pair of low-rank matrices $(B_i, A_i)$ as a token, maps it to a token embedding via a learned projection, and aggregates tokens with transformer blocks into a single embedding. Trained with a contrastive loss against a frozen CLIP text encoder, this embedding is compared with CLIP text embeddings to retrieve top-k relevant LoRAs. Retrieved LoRAs are then combined by a fine-grained gated fusion module that, at every linear layer and diffusion timestep, computes per-dimension weights from the original hidden state and the LoRA outputs using three gating terms, plus a global LoRA obtained by SVD of the summed weights. On a pool of 162 FLUX.1-dev LoRAs, this pipeline improves MPS, HPS, aesthetic score, and VQAScore over the base model, and the improvement holds on out-of-distribution DiffusionDB prompts.
Load-bearing premise
The whole framework rests on the assumption that a LoRA's semantic content can be learned from its weight matrices using only VLM-generated captions of a few example images as labels; if weights carry too little signal or those captions are not faithful, the retriever cannot generalize and the reported gains would not hold up.
Editorial extensions
If this is right
- Any newly added community LoRA can be retrieved zero-shot from its weights alone, since no training data or metadata is needed.
- Fusing top-3 retrieved LoRAs improves MPS, HPS, aesthetic score, and VQAScore over base FLUX on both synthetic and DiffusionDB prompts.
- The gated fusion mechanism remains stable when fusing two or three LoRAs, where direct linear addition and DARE degrade or fail completely.
- The global LoRA, built by SVD of the summed weights, reduces interference and improves multi-LoRA fusion performance.
- The framework scales to arbitrarily many retrieved LoRAs, avoiding the fixed-expert limitation of MoE-based fusion methods.
Reading between the lines
- If weight-based semantic encoding transfers across architectures, the same retriever could index other adapter formats or base diffusion models, such as Stable Diffusion 3, without retraining on their LoRA pools.
- Because the same VL model generates both the training captions and the synthetic test prompts, reported retrieval gains could be partly inflated by caption-style overlap; a strict test would replace test captions with human-written prompts.
- The per-dimension gating weights might serve as an interpretability signal, revealing which LoRA contributes which visual attribute to the final image, and could enable user-controlled mixing.
- The pool can grow incrementally at registration time: a new LoRA only needs its weights encoded once, after which retrieval and fusion proceed without retraining the framework.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes AutoLoRA, a framework for retrieving task-relevant LoRA adapters from a growing pool and fusing them into a base text-to-image diffusion model. The retriever maps LoRA weight matrices into a shared embedding space with a CLIP-style text encoder via contrastive learning, using VLM-generated captions of example renderings as supervision. The fusion module computes per-dimension gating weights for the retrieved LoRAs at each layer, augmented by a synthetic 'global LoRA' obtained by SVD-decomposing the sum of the selected LoRAs' delta matrices. Experiments on a pool of 162 FLUX.1-dev LoRAs report improvements in MPS, HPS, Aesthetic, and VQA scores over the base model on a synthetic prompt set and on DiffusionDB prompts, together with comparisons against Direct, K-LoRA, and DARE fusion baselines.
Significance. The central idea is timely and potentially useful: encoding LoRA weights directly into a semantic space would enable zero-shot retrieval without access to training data, addressing a real bottleneck in the open-source adapter ecosystem. The interference-resistant training objective and the layer/dimension-wise gating design are reasonable building blocks. However, the paper's strongest claimed contribution is retrieval-driven improvement, and that claim is not directly supported by the current experiments. The evaluation is end-to-end only, with no retrieval accuracy measurement, no random-LoRA control, small absolute gains without significance testing, and a synthetic test set that shares the caption-generation pipeline used for retriever training. If the authors add a rigorous retrieval benchmark and isolate the contribution of retrieval from fusion, the framework could be a solid systems contribution; as it stands, the evidence is suggestive but not conclusive.
major comments (5)
- [Effectiveness of LoRA Encoder; Experimental Setup; Tables 1, 3, 4] Retrieval quality is never measured directly. There is no precision@k, recall@k, or any ground-truth relevance judgment for the 162-LoRA pool, and no baseline such as CLIP text-only matching, random selection, or a popularity heuristic. Because the fusion module and the global LoRA of Eq. (9) can alter outputs even when the retrieved LoRAs are irrelevant, the end-to-end gains in Tables 1, 3, and 4 do not establish that retrieval contributed. A control where the same gated fusion module receives k randomly selected or least-similar LoRAs is necessary to support the abstract's claim that AutoLoRA improves generation 'by retrieving relevant LoRA models.'
- [Experimental Setup (synthetic prompt set), Weight Encoding-base LoRA Retriever] The synthetic prompt set appears to be circular with retriever training. The retriever is trained on Qwen VL captions of 1-5 example renderings per LoRA, and the synthetic prompts are also generated by Qwen VL from those same renderings. On this test set, top-k retrieval can succeed by recognizing which LoRA's caption produced the prompt, rather than by generalizable semantic retrieval from LoRA weights. The authors need a held-out benchmark with independent labels, for example human-written prompts, captions from a different VLM or pipeline, and LoRAs that were not seen during retriever training, to support the zero-shot generalization claim.
- [Tables 1, 3, 4, 5; Fine-grained Dynamic Gated LoRA Fusion] None of the quantitative results include variance, confidence intervals, or significance tests, and the reported gains are small in absolute terms (e.g., Table 1: HPS 0.324 to 0.340; VQA 0.916 to 0.922 on the synthetic set). Without multiple seeds, the number of evaluation prompts, and per-prompt variability, it is impossible to tell whether these differences are meaningful. The DiffusionDB results are also averaged over 1,000 rewritten prompts, but no breakdown by prompt type is given. Please report standard errors or confidence intervals and, ideally, paired significance tests against the base model and the random-LoRA control.
- [Eq. (7), Fine-grained Dynamic Gated LoRA Fusion] Equation (7) is dimensionally inconsistent as written. The inputs are x ∈ R^{l×d} and L ∈ R^{k×l×d}, but the additive terms have shapes R^{l×d}, R^{k×l×d}, and R^{k×l×d}, and the resulting G is claimed to be R^{k×d}. The mechanism for reducing the per-token (or per-position) computation to a single k×d gate is not specified. This is central to reproducing the fusion module; please define the exact tensor operations, including any pooling or broadcasting over the sequence dimension l.
- [Effectiveness of LoRA Encoder (Figure 4)] The only direct evidence for the LoRA encoder's retrieval ability is a pairwise similarity heatmap over 21 hand-selected LoRAs grouped into six themes. This is a qualitative sanity check, not a retrieval evaluation. It does not quantify retrieval accuracy on the 162-LoRA pool, does not include near-duplicate or confusable themes, and cannot support the claim of 'highly precise LoRA retrieval in practical applications.' A quantitative retrieval metric with a meaningful relevance definition is required.
minor comments (5)
- [Throughout] There are numerous typos and stylistic issues: 'Itroduction' in the section heading, 'perfermance' in the abstract, 'strategies for multi-LoRA fusion strategies' (redundant), and inconsistent capitalization of 'LoRA' and 'loRA'. Please copyedit carefully.
- [Eq. (1)] The notation in Eq. (1) is under-specified: q_i is called a trainable parameter but is used as a vector in R^k, and the role of the matrix product B_i A_i q_i is not explained. Please state explicitly that q_i is a learned column-selection vector and specify all dimensions.
- [Eq. (10)] In the flow-matching loss, x_1 is never defined, and 'xt' is described as 'the targer image in laten space.' Please define x_0, x_1, and x_t consistently and correct the typos.
- [Related Works] The related-work section refers to 'MoLE' twice with different citations: once as (Wu, Huang, and Wei 2024) in Adapter Retrieval and once as (Zhao et al. 2024) in Adapter Fusion. Please disambiguate these methods and align the citations with the correct references.
- [Experimental Setup] The paper does not state how many evaluation prompts were used for Tables 3, 4, and 5, how many images per prompt were generated, or whether the same random seeds were used across methods. Please include these details for reproducibility.
Circularity Check
Synthetic retrieval set is built from the same Qwen VL captions and renderings used to train the retriever, so the synthetic-prompt gains in Table 1 reduce to a fit to the training labels; the DiffusionDB and fusion results are not circular but lack a random-LoRA control.
-
fitted input called prediction
[Training Object (Eq. 3) and Experimental Setup (Synthetic retrieval test set)]
"First, use VLM to convert each LoRA rendering into text, and use these texts as the labels corresponding to each LoRA. ... We then utilized Qwen VL to generate descriptive captions for each image. For the LoRA retrieval experiments, we randomly selected 1–3 images from the dataset and employed Qwen VL to create prompts that simultaneously capture features from multiple images, ultimately constructing a synthetic prompt set comprising 900 prompts in total."
The test prompts are generated by the same Qwen VL captioner and from the same 1-5 example renderings that supplied the training labels. A synthetic prompt is therefore a paraphrase or merge of the exact caption used as the positive text for that LoRA in the contrastive loss of Eq. (3). Top-k retrieval on this set reduces to retrieving the LoRA whose embedding is nearest to its own Qwen caption in the trained space, i.e., measuring training-set fit rather than zero-shot retrieval. The paper then cites these synthetic-prompt results to conclude that suitable LoRAs were successfully retrieved, making the synthetic half of Table 1 a self-consistent fit rather than an independent prediction.
full rationale
The retriever's only labeled supervision is Qwen VL's text for 1-5 example renderings per LoRA, used in the contrastive objective of Eq. (3). The synthetic retrieval test set is then produced by the same Qwen VL model from the same renderings. A prompt built from a LoRA's example image is effectively a perturbation of the caption used to train that LoRA's embedding, so top-k retrieval on this set is a fitted-label match rather than a zero-shot generalization test. The paper nonetheless uses these synthetic-prompt results to conclude that suitable LoRAs have been successfully retrieved, which is the circular component of the evaluation. The DiffusionDB portion is not circular because it uses an external prompt source, but it is not a retrieval-accuracy test: there is no ground-truth association between prompts and LoRAs, and Tables 1, 3, and 4 never compare the same fusion module with randomly selected or least-similar LoRAs, so aggregate aesthetic and text-alignment gains do not by themselves prove that the retriever selected the right adapters. The fusion module itself is evaluated independently in Tables 2-4 and is not circular. Overall, the circularity is partial and concentrated in the synthetic retrieval benchmark; the central retrieval claim therefore rests in part on a construction that reduces to the training labels.
Assumptions & free parameters
free parameters (5)
- LoRA encoder projection matrix W_hat_i and transformer parameters
- Gating weights wx, wl, wc, bias b, and fusion scaling wo
- Global LoRA decomposition rank =
4 (typical)
- Number of retrieved LoRAs k =
1, 2, 3
- LoRA encoder transformer depth n
assumptions (5)
- domain assumption LoRA weight matrices contain semantic information that can be projected and read by a transformer encoder.
- domain assumption Qwen VL captions of 1-5 renderings per LoRA are accurate semantic labels for the LoRA.
- ad hoc to paper A sum of LoRA delta matrices, decomposed to rank 4 by SVD, captures cross-contextual information useful for fusion.
- domain assumption Flow matching loss with one target and one random interference LoRA generalizes to arbitrary k-way combinations.
- domain assumption Pre-trained CLIP text encoder provides a valid semantic space for matching text prompts to LoRA weights.
invented entities (1)
-
Global general LoRA L_g
Cite this review
Pith. "Pith review of AutoLoRA: Automatic LoRA Retrieval and Fine-Grained Gated Fusion for Text-to-Image Generation." pith.science (2026). https://pith.science/paper/LQW3B5WH
@misc{pith2026250802107,
author = {Pith},
title = {Pith review of: AutoLoRA: Automatic LoRA Retrieval and Fine-Grained Gated Fusion for Text-to-Image Generation},
year = {2026},
howpublished = {\url{https://pith.science/paper/LQW3B5WH}},
note = {Machine review of arXiv:2508.02107}
}
read the original abstract
Despite recent advances in photorealistic image generation through large-scale models like FLUX and Stable Diffusion v3, the practical deployment of these architectures remains constrained by their inherent intractability to parameter fine-tuning. While low-rank adaptation (LoRA) have demonstrated efficacy in enabling model customization with minimal parameter overhead, the effective utilization of distributed open-source LoRA modules faces three critical challenges: sparse metadata annotation, the requirement for zero-shot adaptation capabilities, and suboptimal fusion strategies for multi-LoRA fusion strategies. To address these limitations, we introduce a novel framework that enables semantic-driven LoRA retrieval and dynamic aggregation through two key components: (1) weight encoding-base LoRA retriever that establishes a shared semantic space between LoRA parameter matrices and text prompts, eliminating dependence on original training data, and (2) fine-grained gated fusion mechanism that computes context-specific fusion weights across network layers and diffusion timesteps to optimally integrate multiple LoRA modules during generation. Our approach achieves significant improvement in image generation perfermance, thereby facilitating scalable and data-efficient enhancement of foundational models. This work establishes a critical bridge between the fragmented landscape of community-developed LoRAs and practical deployment requirements, enabling collaborative model evolution through standardized adapter integration.
Figures
Forward citations
Cited by 2 Pith papers
-
Parametric Memory Decoding for Zero-Shot Routing in LoRA-Based External Parametric Memory
PMDRouter selects LoRAs zero-shot by decoding scale-normalized linear response energy from one adapter-free backbone prefill, and leads most internal-signal baselines on a new multi-granularity EPM bench.
-
Training-Free Multi-Concept LoRA Composition with Prompt-Aware Weighting
Prompt-aware weighting strategies W-Switch and W-Composite improve multi-concept LoRA composition in diffusion models without training.
Reference graph
Works this paper leans on
-
[1]
, " * write output.state after.block = add.period write newline
ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block FUNCTION init.state.consts #0 'before.a...
-
[2]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...
-
[3]
X.; Gao, H.; Chen, D.; Li, J.; Zeng, W.; Yu, X.; Wu, Y.; Xie, Z.; Li, Y
Dai, D.; Deng, C.; Zhao, C.; Xu, R. X.; Gao, H.; Chen, D.; Li, J.; Zeng, W.; Yu, X.; Wu, Y.; Xie, Z.; Li, Y. K.; Huang, P.; Luo, F.; Ruan, C.; Sui, Z.; and Liang, W. 2024. DeepSeekMoE: Towards Ultimate Expert Specialization in Mixture-of-Experts Language Models. In Ku, L.; Martins, A.; and Srikumar, V., eds., Proceedings of the 62nd Annual Meeting of the ...
work page 2024
-
[4]
Dong, J.; Liang, W.; Li, H.; Zhang, D.; Cao, M.; Ding, H.; Khan, S. H.; and Khan, F. S. 2024. How to Continually Adapt Text-to-Image Diffusion Models for Flexible Customization? In Globersons, A.; Mackey, L.; Belgrave, D.; Fan, A.; Paquet, U.; Tomczak, J. M.; and Zhang, C., eds., Advances in Neural Information Processing Systems 38: Annual Conference on N...
work page 2024
-
[5]
Esser, P.; Kulal, S.; Blattmann, A.; Entezari, R.; M \" u ller, J.; Saini, H.; Levi, Y.; Lorenz, D.; Sauer, A.; Boesel, F.; Podell, D.; Dockhorn, T.; English, Z.; and Rombach, R. 2024. Scaling Rectified Flow Transformers for High-Resolution Image Synthesis. In Forty-first International Conference on Machine Learning, ICML 2024, Vienna, Austria, July 21-27...
work page 2024
-
[6]
Fedus, W.; Zoph, B.; and Shazeer, N. 2022. Switch Transformers: Scaling to Trillion Parameter Models with Simple and Efficient Sparsity. J. Mach. Learn. Res., 23: 120:1--120:39
work page 2022
-
[7]
Gao, Y.; Xiong, Y.; Gao, X.; Jia, K.; Pan, J.; Bi, Y.; Dai, Y.; Sun, J.; Guo, Q.; Wang, M.; and Wang, H. 2023. Retrieval-Augmented Generation for Large Language Models: A Survey. CoRR, abs/2312.10997
arXiv 2023
-
[8]
Z.; Shi, Y.; Chen, Y.; Fan, Z.; Xiao, W.; Zhao, R.; Chang, S.; Wu, W.; Ge, Y.; Shan, Y.; and Shou, M
Gu, Y.; Wang, X.; Wu, J. Z.; Shi, Y.; Chen, Y.; Fan, Z.; Xiao, W.; Zhao, R.; Chang, S.; Wu, W.; Ge, Y.; Shan, Y.; and Shou, M. Z. 2023. Mix-of-Show: Decentralized Low-Rank Adaptation for Multi-Concept Customization of Diffusion Models. In Oh, A.; Naumann, T.; Globerson, A.; Saenko, K.; Hardt, M.; and Levine, S., eds., Advances in Neural Information Proces...
work page 2023
Show all 29 references
-
[9]
J.; Shen, Y.; Wallis, P.; Allen - Zhu, Z.; Li, Y.; Wang, S.; Wang, L.; and Chen, W
Hu, E. J.; Shen, Y.; Wallis, P.; Allen - Zhu, Z.; Li, Y.; Wang, S.; Wang, L.; and Chen, W. 2022. LoRA: Low-Rank Adaptation of Large Language Models. In The Tenth International Conference on Learning Representations, ICLR 2022, Virtual Event, April 25-29, 2022 . OpenReview.net
2022
-
[10]
Labs, B. F. 2024. FLUX
2024
-
[11]
Lepikhin, D.; Lee, H.; Xu, Y.; Chen, D.; Firat, O.; Huang, Y.; Krikun, M.; Shazeer, N.; and Chen, Z. 2021. GShard: Scaling Giant Models with Conditional Computation and Automatic Sharding. In 9th International Conference on Learning Representations, ICLR 2021, Virtual Event, A...
2021
-
[12]
u ttler, H.; Lewis, M.; Yih, W.; Rockt \
Lewis, P.; Perez, E.; Piktus, A.; Petroni, F.; Karpukhin, V.; Goyal, N.; K \" u ttler, H.; Lewis, M.; Yih, W.; Rockt \" a schel, T.; Riedel, S.; and Kiela, D. 2020. Retrieval-Augmented Generation for Knowledge-Intensive NLP Tasks. In Larochelle, H.; Ranzato, M.; Hadsell, R.; B...
2020
-
[13]
Lin, Z.; Pathak, D.; Li, B.; Li, J.; Xia, X.; Neubig, G.; Zhang, P.; and Ramanan, D. 2024. Evaluating Text-to-Visual Generation with Image-to-Text Generation. In Leonardis, A.; Ricci, E.; Roth, S.; Russakovsky, O.; Sattler, T.; and Varol, G., eds., Computer Vision - ECCV 2024 ...
2024
-
[14]
Muqeeth, M.; Liu, H.; Liu, Y.; and Raffel, C. 2024. Learning to Route Among Specialized Experts for Zero-Shot Generalization. In Forty-first International Conference on Machine Learning, ICML 2024, Vienna, Austria, July 21-27, 2024 . OpenReview.net
2024
-
[15]
Muqeeth, M.; Liu, H.; and Raffel, C. 2024. Soft Merging of Experts with Adaptive Routing. Trans. Mach. Learn. Res., 2024
2024
-
[16]
Ouyang, Z.; Li, Z.; and Hou, Q. 2025. K-LoRA: Unlocking Training-Free Fusion of Any Subject and Style LoRAs. In IEEE/CVF Conference on Computer Vision and Pattern Recognition, CVPR 2025, Nashville, TN, USA, June 11-15, 2025 , 13041--13050. Computer Vision Foundation / IEEE
2025
-
[17]
B.; H \" a renstam - Nielsen, L.; Seg \` u , M.; Dovesi, P
Qorbani, R.; Villani, G.; Panagiotakopoulos, T.; Colomer, M. B.; H \" a renstam - Nielsen, L.; Seg \` u , M.; Dovesi, P. L.; Karlgren, J.; Cremers, D.; Tombari, F.; and Poggi, M. 2025. Semantic Library Adaptation: LoRA Retrieval and Fusion for Open-Vocabulary Semantic Segmenta...
2025
-
[18]
W.; Hallacy, C.; Ramesh, A.; Goh, G.; Agarwal, S.; Sastry, G.; Askell, A.; Mishkin, P.; Clark, J.; Krueger, G.; and Sutskever, I
Radford, A.; Kim, J. W.; Hallacy, C.; Ramesh, A.; Goh, G.; Agarwal, S.; Sastry, G.; Askell, A.; Mishkin, P.; Clark, J.; Krueger, G.; and Sutskever, I. 2021. Learning Transferable Visual Models From Natural Language Supervision. In Meila, M.; and Zhang, T., eds., Proceedings of...
2021
-
[19]
Rombach, R.; Blattmann, A.; Lorenz, D.; Esser, P.; and Ommer, B. 2022. High-Resolution Image Synthesis with Latent Diffusion Models. In IEEE/CVF Conference on Computer Vision and Pattern Recognition, CVPR 2022, New Orleans, LA, USA, June 18-24, 2022 , 10674--10685. IEEE
2022
-
[20]
Schuhmann, C.; Beaumont, R.; Vencu, R.; Gordon, C.; Wightman, R.; Cherti, M.; Coombes, T.; Katta, A.; Mullis, C.; Wortsman, M.; Schramowski, P.; Kundurthy, S.; Crowson, K.; Schmidt, L.; Kaczmarczyk, R.; and Jitsev, J. 2022. LAION-5B: An open large-scale dataset for training ne...
2022
-
[21]
Shah, V.; Ruiz, N.; Cole, F.; Lu, E.; Lazebnik, S.; Li, Y.; and Jampani, V. 2024. ZipLoRA: Any Subject in Any Style by Effectively Merging LoRAs. In Leonardis, A.; Ricci, E.; Roth, S.; Russakovsky, O.; Sattler, T.; and Varol, G., eds., Computer Vision - ECCV 2024 - 18th Europe...
2024
-
[22]
Simsar, E.; Hofmann, T.; Tombari, F.; and Yanardag, P. 2025. LoRACLR: Contrastive Adaptation for Customization of Diffusion Models. In IEEE/CVF Conference on Computer Vision and Pattern Recognition, CVPR 2025, Nashville, TN, USA, June 11-15, 2025 , 13189--13198. Computer Visio...
2025
-
[23]
J.; Montoya, E.; Munechika, D.; Yang, H.; Hoover, B.; and Chau, D
Wang, Z. J.; Montoya, E.; Munechika, D.; Yang, H.; Hoover, B.; and Chau, D. H. 2023. DiffusionDB: A Large-scale Prompt Gallery Dataset for Text-to-Image Generative Models. In Rogers, A.; Boyd - Graber, J. L.; and Okazaki, N., eds., Proceedings of the 61st Annual Meeting of the...
2023
-
[24]
Wu, X.; Hao, Y.; Sun, K.; Chen, Y.; Zhu, F.; Zhao, R.; and Li, H. 2023. Human Preference Score v2: A Solid Benchmark for Evaluating Human Preferences of Text-to-Image Synthesis. CoRR, abs/2306.09341
2023 arXiv
-
[25]
Wu, X.; Huang, S.; and Wei, F. 2024. Mixture of LoRA Experts. In The Twelfth International Conference on Learning Representations, ICLR 2024, Vienna, Austria, May 7-11, 2024 . OpenReview.net
2024
-
[26]
Yang, Y.; Wang, W.; Peng, L.; Song, C.; Chen, Y.; Li, H.; Yang, X.; Lu, Q.; Cai, D.; Wu, B.; and Liu, W. 2024. LoRA-Composer: Leveraging Low-Rank Adaptation for Multi-Concept Customization in Training-Free Diffusion Models. CoRR, abs/2403.11627
2024 arXiv
-
[27]
Yu, L.; Yu, B.; Yu, H.; Huang, F.; and Li, Y. 2024. Language Models are Super Mario: Absorbing Abilities from Homologous Models as a Free Lunch. In Forty-first International Conference on Machine Learning, ICML 2024, Vienna, Austria, July 21-27, 2024 . OpenReview.net
2024
-
[28]
Zhang, S.; Wang, B.; Wu, J.; Li, Y.; Gao, T.; Zhang, D.; and Wang, Z. 2024. Learning Multi-Dimensional Human Preference for Text-to-Image Generation. In IEEE/CVF Conference on Computer Vision and Pattern Recognition, CVPR 2024, Seattle, WA, USA, June 16-22, 2024 , 8018--8027. IEEE
2024
-
[29]
Zhao, Z.; Gan, L.; Wang, G.; Hu, Y.; Shen, T.; Yang, H.; Kuang, K.; and Wu, F. 2024. Retrieval-Augmented Mixture of LoRA Experts for Uploadable Machine Learning. CoRR, abs/2406.16989
2024 arXiv
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.