REVIEW 4 major objections 5 minor 44 references
WordCraft: Interactive Artistic Typography with Attention Awareness and Noise Blending
T0 review · 4 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read WordCraft shows that a diffusion model can be made interactive for artistic typography by adding a training-free regional attention mask and a noise-blending rule, enabling precise local edits and iterative refinement from open-ended…
desk verdict A promising interactive typography system whose central attention-mask equation is mathematically wrong as written. 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 objects are (1) a regional attention mask inserted into the multi-modality attention of the FLUX transformer, whose blocks are set to 1 only for token pairs within the same user-defined region or between that region and its corresponding text or depth tokens, so different regions do not leak information into one another; (2) a noise-blending rule that, at each denoising step, keeps the original predicted noise outside the masked regions and substitutes region-specific newly predicted noise inside, so only the masked areas change; and (3) an LLM-based semantic parser that turns free-form user text into a base prompt and per-region prompts. The input character is parameterized by spline fitting and differentiable rasterization into a clean glyph image, from which a pretrained depth estimator derives the conditioning depth map.
What would settle it
Run an OCR or character-recognition model on the generated images for out-of-domain scripts (Japanese, Korean, Arabic numerals) and compare the recognition accuracy against the input glyphs; if accuracy is near chance or drops sharply relative to in-domain scripts, depth conditioning is not preserving legibility. Alternatively, measure the structural similarity (SSIM) between the unedited regions before and after a regional edit; a substantial drop would contradict the claim that noise blending leaves those regions unchanged.
Extended reading notes
Core claim
On its own terms, the paper claims that a FLUX diffusion model fine-tuned on a small typography dataset can be made interactive by masking the attention between image tokens and text/depth tokens according to user-drawn regions, and by blending newly predicted noise with the original noise only inside those regions during denoising. Each region of a glyph is then guided by its own text description while the depth map of the plain character keeps the geometry faithful, and repeated local edits are possible because the unchanged regions keep their original noise. A large language model converts abstract or compound user descriptions into a structured base prompt plus per-region prompts. The reported evaluation shows higher CLIP image-text similarity, lower FID, and higher user-study ratings (aesthetic quality, text alignment, legibility) than the VitaGlyph and MetaDesigner baselines, along with qualitative generalization to Japanese, Korean, Arabic numerals, and music symbols.
Load-bearing premise
The load-bearing premise is that depth maps derived from plain, untextured glyph images, together with a LoRA fine-tune on 355 words, are enough to preserve character legibility and structure across regions and across out-of-domain scripts; the paper reports no quantitative measurement of structural preservation.
Editorial extensions
If this is right
- Users can assign different styles to different radicals, letters, or sub-regions of a word and refine a single region repeatedly without redrawing the rest.
- The same pipeline works for single- and multi-character inputs and for scripts beyond the training set, such as Japanese, Korean, Arabic numerals, and music symbols.
- The method removes the need for paired local-editing training data: regional editing and refinement are training-free given a base model fine-tuned for global generation.
- Compared with prior two-region or single-prompt systems, the regional attention mask reduces semantic confusion between regions, leading to higher text-image alignment (CLIP) and visual realism (FID).
- The LLM parsing makes abstract, compound, and open-ended descriptions usable as-is, so non-expert users can drive the system without formatting constraints.
Reading between the lines
- If depth conditioning is indeed what preserves legibility, the method's ceiling is set by the depth estimator's ability to read flat, untextured glyphs; scripts with very different stroke topology may need more training data than the 355 words used here.
- The noise-blending rule implies a trade-off: the more denoising steps already taken before an edit, the stronger the anchor to the original image, so very late edits may not fully adopt the new prompt; this is testable by varying the edit timing.
- The same regional attention mask could be applied to other diffusion transformer-based generators beyond typography, enabling interactive local editing of logos, diagrams, or mixed-media images.
- A direct comparison of character recognition accuracy (OCR) on edited outputs would strengthen the legibility claim, which the paper only measures through a subjective user study.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. WordCraft proposes an interactive artistic typography system built on FLUX.1. The pipeline uses an LLM to decompose open-ended user prompts into structured global/regional prompts, parameterizes characters via FreeType/DiffVG, conditions on depth maps, and fine-tunes FLUX with LoRA on a small dataset. The two core technical contributions are a "regional attention" mask applied inside the transformer's multi-modal attention to separate regions, and a noise-blending strategy that replaces noise only in user-masked regions during iterative denoising. The paper reports CLIP/FID improvements over MetaDesigner and VitaGlyph, a 30-response user study, and extensive qualitative results across languages and scripts.
Significance. If the technical claims are correct, WordCraft would be a meaningful step toward interactive, localized typography generation: it targets real user needs (local edits, iterative refinement, open-ended prompts) that existing single-pass methods such as VitaGlyph and MetaDesigner do not address, and the qualitative figures show a usable interface and plausible multi-region outputs. The idea of region-specific attention in a diffusion transformer is timely, and the noise-blending formulation is simple and well-motivated. However, the paper's central formal definition of the regional attention mask is mathematically incomplete (multiplication by a 0/1 mask is not a valid hard attention mask), and the quantitative evaluation as reported is not sufficient to establish superiority. The contribution is therefore currently promising but not yet convincingly demonstrated.
major comments (4)
- [Section 3.2.2, Eq. (3)] The regional attention mask is written as an elementwise multiplication of the logit matrix by a 0/1 mask M. Under softmax, a blocked entry with logit 0 receives probability exp(0)/Σ exp(·), which can be substantial; for example, if the unblocked logit is 2 and the blocked logit is 0, the blocked key receives about 11.9% of the attention mass. This does not implement the "no attention interaction" claimed for the zero blocks in Eq. (8). The correct construction is an additive mask with -inf (or a large negative constant) on blocked entries. As written, the central mechanism of the paper does not provide independent regional control.
- [Section 3.2.2, Eq. (4)] The mask blocks for the base-prompt tokens T_b are never defined. The sequence in Eq. (3) is [X; T_b; T_1;...;T_N; D], but the block matrix in Eq. (4) only lists image, regional-text, and depth blocks; the rows/columns for T_b (e.g., M_{T_b2X}, M_{X2T_b}, M_{T_b2T_k}) are absent. Since attention is not stated to be causal in this formulation, the behavior of the base prompt is underspecified and could affect the regional-control claim. This formal gap must be addressed before the method is reproducible.
- [Section 4.2, Tables 1-2] The headline quantitative results are not statistically grounded. Table 1 reports CLIP-Score and FID without error bars, confidence intervals, or the number of seeds or samples, and the reference distribution for FID is not described. In addition, CLIP-Score is computed with the same prompts that condition the generation, so the metric is partially circular and the reported +2.23% advantage over VitaGlyph is difficult to interpret. The user study in Table 2 aggregates only 30 responses over 10 questions with no significance tests or variance reporting; the claim that the method "consistently outperforms" the baselines is not supported by the reported evidence.
- [Section 4.3 and Section 4.6] The ablations of the regional attention and noise blending are qualitative only, and the claimed generalization to out-of-domain scripts (Japanese, Korean, Arabic numerals, music symbols) is shown only in figures. There is no quantitative measurement of structural preservation, character legibility, or region-independence (e.g., how much the unedited region changes after a local edit). Without such measurements, the contribution of the regional attention mechanism is not isolated from the LoRA fine-tuning and depth conditioning.
minor comments (5)
- [Section 3.2.1] The text says "T5 text encoder [21]" but reference [21] is the SDXL paper; the T5 citation is missing.
- [Figure 5 caption] The caption says "without rational attention (w/o RA)" but should read "regional attention."
- [Section 3.2.2] In the paragraph explaining Eq. (4), the off-diagonal mask blocks are described as "the self-attention mask"; this appears to be a typo for "cross-attention mask."
- [Section 4.1] The spellings "OminiControl" and "multi-model attention" should be "Ominicontrol" (or "OmniControl") and "multi-modal attention."
- [General terminology] The regional attention is called "training-free," but the overall system includes LoRA fine-tuning on a collected dataset; the paper should clarify the precise sense in which the attention mechanism itself requires no additional training.
Circularity Check
No significant circularity: the derivation chain is self-contained, and the self-citations are either inspirational or non-load-bearing.
full rationale
I walked the paper's claimed derivation chain: the LLM-based semantic parsing (Eq. 1), character parameterization, depth-conditioned FLUX generation, regional attention (Eqs. 3-8), and noise blending (Eq. 9). None of these steps reduces to its own inputs by construction. The regional attention mask is defined independently of the evaluation metrics; noise blending is a spatial mixing rule that is definitional but is not presented as a prediction. The CLIP score does measure alignment to the same prompts used for conditioning, which is a mild benchmark dependence shared by all text-to-image methods, but this is not a logical circularity: the generation is still a nontrivial function of the prompts, regions, and depth. The paper cites two prior works by co-authors ([30] Chat2Layout for LLM decomposition and [39] HumanRef for attention-mask inspiration), but neither citation is used as a uniqueness theorem, as a substitute for evidence, or to forbid alternatives; the methods are implemented and evaluated independently. The skeptical concern about Eq. 3 (multiplying logits by a 0/1 mask instead of adding -inf) is a mathematical correctness issue in the attention formulation, not a circularity, because it does not make the output equivalent to the input by definition. No self-citation chain forces the central result, and no fitted parameter is renamed as a prediction. I therefore find no significant circularity and assign score 0.
Assumptions & free parameters
free parameters (3)
- t_step (noise blending timestep)
- guidance_scale (classifier-free guidance)
- LoRA fine-tuning hyperparameters =
80,000 steps, Prodigy lr=1.0
assumptions (3)
- domain assumption FLUX.1 fine-tuned with LoRA on the authors' 355-word dataset and conditioned on a Depth Anything depth map preserves the structure and legibility of input glyphs.
- domain assumption The attention mask from HumanRef transfers to FLUX's multi-modal attention and exactly isolates regions so that regional prompts do not leak.
- domain assumption GPT-4 reliably converts arbitrary user descriptions and region selections into valid JSON prompts and masks for the diffusion model.
Cite this review
Pith. "Pith review of WordCraft: Interactive Artistic Typography with Attention Awareness and Noise Blending." pith.science (2026). https://pith.science/paper/3N3VD5LV
@misc{pith2026250709573,
author = {Pith},
title = {Pith review of: WordCraft: Interactive Artistic Typography with Attention Awareness and Noise Blending},
year = {2026},
howpublished = {\url{https://pith.science/paper/3N3VD5LV}},
note = {Machine review of arXiv:2507.09573}
}
read the original abstract
Artistic typography aims to stylize input characters with visual effects that are both creative and legible. Traditional approaches rely heavily on manual design, while recent generative models, particularly diffusion-based methods, have enabled automated character stylization. However, existing solutions remain limited in interactivity, lacking support for localized edits, iterative refinement, multi-character composition, and open-ended prompt interpretation. We introduce WordCraft, an interactive artistic typography system that integrates diffusion models to address these limitations. WordCraft features a training-free regional attention mechanism for precise, multi-region generation and a noise blending that supports continuous refinement without compromising visual quality. To support flexible, intent-driven generation, we incorporate a large language model to parse and structure both concrete and abstract user prompts. These components allow our framework to synthesize high-quality, stylized typography across single- and multi-character inputs across multiple languages, supporting diverse user-centered workflows. Our system significantly enhances interactivity in artistic typography synthesis, opening up creative possibilities for artists and designers.
Figures
Figures from the paper (12 more)
Reference graph
Works this paper leans on
-
[21]
Dustin Podell, Zion English, Kyle Lacey, Andreas Blattmann, Tim Dockhorn, Jonas M ¨uller, Joe Penna, and Robin Rombach. Sdxl: Improving latent diffusion mod- els for high-resolution image synthesis.arXiv preprint arXiv:2307.01952, 2023. 4
arXiv 2023
-
[1]
Large language models for mathematical reasoning: Progresses and challenges
Janice Ahn, Rishu Verma, Renze Lou, Di Liu, Rui Zhang, and Wenpeng Yin. Large language models for mathematical reasoning: Progresses and challenges. In18th Conference of the European Chapter of the Association for Computa- tional Linguistics, EACL 2024-Student Research Workshop, SRW 2024, pages 225–237. Association for Computational Linguistics (ACL), 2024. 3
work page 2024
-
[2]
Multi-content gan for few-shot font style transfer
Samaneh Azadi, Matthew Fisher, Vladimir G Kim, Zhaowen Wang, Eli Shechtman, and Trevor Darrell. Multi-content gan for few-shot font style transfer. InProceedings of the IEEE conference on computer vision and pattern recogni- tion, pages 7564–7573, 2018. 2
work page 2018
-
[3]
Loosec- ontrol: Lifting controlnet for generalized depth conditioning
Shariq Farooq Bhat, Niloy Mitra, and Peter Wonka. Loosec- ontrol: Lifting controlnet for generalized depth conditioning. InACM SIGGRAPH 2024 Conference Papers, pages 1–11,
2024
-
[4]
Scaling recti- fied flow transformers for high-resolution image synthesis
Patrick Esser, Sumith Kulal, Andreas Blattmann, Rahim Entezari, Jonas M ¨uller, Harry Saini, Yam Levi, Dominik Lorenz, Axel Sauer, Frederic Boesel, et al. Scaling recti- fied flow transformers for high-resolution image synthesis. InForty-first international conference on machine learning,
-
[5]
Kailai Feng, Yabo Zhang, Haodong Yu, Zhilong Ji, Jinfeng Bai, Hongzhi Zhang, and Wangmeng Zuo. Vitaglyph: Vital- izing artistic typography with flexible dual-branch diffusion models.arXiv preprint arXiv:2410.01738, 2024. 2, 7
arXiv 2024
-
[6]
Neural trans- formation fields for arbitrary-styled font generation
Bin Fu, Junjun He, Jianjun Wang, and Yu Qiao. Neural trans- formation fields for arbitrary-styled font generation. InPro- ceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 22438–22447, 2023. 2
work page 2023
-
[7]
Wordart designer: User-driven artistic typography synthesis using large language models
Jun-Yan He, Zhi-Qi Cheng, Chenyang Li, Jingdong Sun, Wangmeng Xiang, Xianhui Lin, Xiaoyang Kang, Zengke Jin, Yusen Hu, Bin Luo, et al. Wordart designer: User-driven artistic typography synthesis using large language models. InProceedings of the 2023 Conference on Empirical Meth- ods in Natural Language Processing: Industry Track, pages 223–232, 2023. 2, 3
work page 2023
Show all 44 references
-
[8]
Metadesigner: Advancing artistic typography through ai-driven, user-centric, and multilingual wordart synthesis
Jun-Yan He, Zhi-Qi Cheng, Chenyang Li, Jingdong Sun, Qi He, Wangmeng Xiang, Hanyuan Chen, Jin-Peng Lan, Xian- hui Lin, Bin Luo, et al. Metadesigner: Advancing artistic typography through ai-driven, user-centric, and multilingual wordart synthesis. InThe Thirteenth Internationa...
2025
-
[9]
Gans trained by a two time-scale update rule converge to a local nash equilib- rium.Advances in neural information processing systems, 30, 2017
Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, and Sepp Hochreiter. Gans trained by a two time-scale update rule converge to a local nash equilib- rium.Advances in neural information processing systems, 30, 2017. 6
2017
-
[10]
Word-as-image for semantic typography.ACM Transactions on Graphics (TOG), 42(4): 1–11, 2023
Shir Iluz, Yael Vinker, Amir Hertz, Daniel Berio, Daniel Cohen-Or, and Ariel Shamir. Word-as-image for semantic typography.ACM Transactions on Graphics (TOG), 42(4): 1–11, 2023. 2
2023
-
[11]
Image-to-image translation with conditional adver- sarial networks
Phillip Isola, Jun-Yan Zhu, Tinghui Zhou, and Alexei A Efros. Image-to-image translation with conditional adver- sarial networks. InProceedings of the IEEE conference on computer vision and pattern recognition, pages 1125–1134,
-
[12]
Neural style transfer: A review
Yongcheng Jing, Yezhou Yang, Zunlei Feng, Jingwen Ye, Yizhou Yu, and Mingli Song. Neural style transfer: A review. IEEE transactions on visualization and computer graphics, 26(11):3365–3385, 2019. 2
2019
-
[13]
Flux.https://github.com/ black-forest-labs/flux, 2024
Black Forest Labs. Flux.https://github.com/ black-forest-labs/flux, 2024. 4, 6
2024
-
[14]
Differentiable vector graphics rasterization for editing and learning.ACM Transactions on Graphics (TOG), 39(6):1–15, 2020
Tzu-Mao Li, Michal Luk ´aˇc, Micha ¨el Gharbi, and Jonathan Ragan-Kelley. Differentiable vector graphics rasterization for editing and learning.ACM Transactions on Graphics (TOG), 39(6):1–15, 2020. 4
2020
-
[15]
Smartcontrol: Enhancing controlnet for handling rough visual conditions
Xiaoyu Liu, Yuxiang Wei, Ming Liu, Xianhui Lin, Peiran Ren, Xuansong Xie, and Wangmeng Zuo. Smartcontrol: Enhancing controlnet for handling rough visual conditions. InEuropean Conference on Computer Vision, pages 1–17. Springer, 2024. 3
2024
-
[16]
Intelligent typography: Artistic text style transfer for complex texture and structure.IEEE Transac- tions on Multimedia, 25:6485–6498, 2022
Wendong Mao, Shuai Yang, Huihong Shi, Jiaying Liu, and Zhongfeng Wang. Intelligent typography: Artistic text style transfer for complex texture and structure.IEEE Transac- tions on Multimedia, 25:6485–6498, 2022. 2
2022
-
[17]
Prodigy: An expeditiously adaptive parameter-free learner
Konstantin Mishchenko and Aaron Defazio. Prodigy: An expeditiously adaptive parameter-free learner. InForty-first International Conference on Machine Learning, 2024. 6
2024
-
[18]
Fontstudio: shape- adaptive diffusion model for coherent and consistent font ef- fect generation
Xinzhi Mu, Li Chen, Bohan Chen, Shuyang Gu, Jianmin Bao, Dong Chen, Ji Li, and Yuhui Yuan. Fontstudio: shape- adaptive diffusion model for coherent and consistent font ef- fect generation. InEuropean Conference on Computer Vi- sion, pages 305–322. Springer, 2024. 3
2024
-
[19]
Using an llm to help with code understanding
Daye Nam, Andrew Macvean, Vincent Hellendoorn, Bogdan Vasilescu, and Brad Myers. Using an llm to help with code understanding. InProceedings of the IEEE/ACM 46th Inter- national Conference on Software Engineering, pages 1–13,
-
[20]
Multi- modal attention for speech emotion recognition.arXiv preprint arXiv:2009.04107, 2020
Zexu Pan, Zhaojie Luo, Jichen Yang, and Haizhou Li. Multi- modal attention for speech emotion recognition.arXiv preprint arXiv:2009.04107, 2020. 4
2009 arXiv
-
[22]
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. InInternational conference on machine learning, p...
2021
-
[23]
Hierarchical text-conditional image gener- ation with clip latents.arXiv preprint arXiv:2204.06125, 1 (2):3, 2022
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. 3
2022 arXiv
-
[24]
High-resolution image synthesis with latent diffusion models
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj ¨orn Ommer. High-resolution image synthesis with latent diffusion models. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 10684–10695, 2022. 2, 3
2022
-
[25]
Photorealistic text-to-image diffusion models with deep language understanding.Advances in neural information processing systems, 35:36479–36494, 2022
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
-
[26]
Ominicontrol: Minimal and uni- versal control for diffusion transformer.arXiv preprint arXiv:2411.15098, 3, 2024
Zhenxiong Tan, Songhua Liu, Xingyi Yang, Qiaochu Xue, and Xinchao Wang. Ominicontrol: Minimal and uni- versal control for diffusion transformer.arXiv preprint arXiv:2411.15098, 3, 2024. 2, 6
2024 arXiv
-
[27]
Ds-fusion: Artistic typography via discriminated and stylized diffusion
Maham Tanveer, Yizhi Wang, Ali Mahdavi-Amiri, and Hao Zhang. Ds-fusion: Artistic typography via discriminated and stylized diffusion. InProceedings of the IEEE/CVF Inter- national Conference on Computer Vision, pages 374–384,
-
[28]
Freetype, 1996
David Turner, Robert Wilhelm, and Werner Lemberg. Freetype, 1996. 4
1996
-
[29]
Anything to glyph: artistic font synthe- sis via text-to-image diffusion model
Changshuo Wang, Lei Wu, Xiaole Liu, Xiang Li, Lei Meng, and Xiangxu Meng. Anything to glyph: artistic font synthe- sis via text-to-image diffusion model. InSIGGRAPH Asia 2023 Conference Papers, pages 1–11, 2023. 2
2023
-
[30]
Chat2layout: Interactive 3d furniture layout with a multimodal llm.arXiv preprint arXiv:2407.21333, 2024
Can Wang, Hongliang Zhong, Menglei Chai, Mingming He, Dongdong Chen, and Jing Liao. Chat2layout: Interactive 3d furniture layout with a multimodal llm.arXiv preprint arXiv:2407.21333, 2024. 3
2024 arXiv
-
[31]
Typography with decor: Intelligent text style transfer
Wenjing Wang, Jiaying Liu, Shuai Yang, and Zongming Guo. Typography with decor: Intelligent text style transfer. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 5889–5897, 2019. 2
2019
-
[32]
Multi-modality cross attention network for image and sentence matching
Xi Wei, Tianzhu Zhang, Yan Li, Yongdong Zhang, and Feng Wu. Multi-modality cross attention network for image and sentence matching. InProceedings of the IEEE/CVF con- ference on computer vision and pattern recognition, pages 10941–10950, 2020. 6
2020
-
[33]
Depth anything: Unleashing the power of large-scale unlabeled data
Lihe Yang, Bingyi Kang, Zilong Huang, Xiaogang Xu, Jiashi Feng, and Hengshuang Zhao. Depth anything: Unleashing the power of large-scale unlabeled data. InCVPR, 2024. 4, 6
2024
-
[34]
Tet-gan: Text effects transfer via stylization and destyl- ization
Shuai Yang, Jiaying Liu, Wenjing Wang, and Zongming Guo. Tet-gan: Text effects transfer via stylization and destyl- ization. InProceedings of the AAAI Conference on Artificial Intelligence, pages 1238–1245, 2019. 2
2019
-
[35]
Controllable artistic text style transfer via shape-matching gan
Shuai Yang, Zhangyang Wang, Zhaowen Wang, Ning Xu, Jiaying Liu, and Zongming Guo. Controllable artistic text style transfer via shape-matching gan. InProceedings of the IEEE/CVF International Conference on Computer Vision, pages 4442–4451, 2019. 2
2019
-
[36]
Shape- matching gan++: Scale controllable dynamic artistic text style transfer.IEEE Transactions on Pattern Analysis and Machine Intelligence, 44(7):3807–3820, 2021
Shuai Yang, Zhangyang Wang, and Jiaying Liu. Shape- matching gan++: Scale controllable dynamic artistic text style transfer.IEEE Transactions on Pattern Analysis and Machine Intelligence, 44(7):3807–3820, 2021. 2
2021
-
[37]
Glyphcontrol: glyph conditional control for visual text generation.Advances in Neural Information Processing Systems, 36:44050–44066,
Yukang Yang, Dongnan Gui, Yuhui Yuan, Weicong Liang, Haisong Ding, Han Hu, and Kai Chen. Glyphcontrol: glyph conditional control for visual text generation.Advances in Neural Information Processing Systems, 36:44050–44066,
-
[38]
A survey on large language model (llm) security and privacy: The good, the bad, and the ugly
Yifan Yao, Jinhao Duan, Kaidi Xu, Yuanfang Cai, Zhibo Sun, and Yue Zhang. A survey on large language model (llm) security and privacy: The good, the bad, and the ugly. High-Confidence Computing, page 100211, 2024. 3
2024
-
[39]
Humanref: Single image to 3d human gen- eration via reference-guided diffusion
Jingbo Zhang, Xiaoyu Li, Qi Zhang, Yanpei Cao, Ying Shan, and Jing Liao. Humanref: Single image to 3d human gen- eration via reference-guided diffusion. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 1844–1854, 2024. 5
2024
-
[40]
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. 2, 3
2023
-
[41]
Uni-controlnet: All-in-one control to text-to-image diffusion models.Advances in Neural Information Processing Sys- tems, 36:11127–11150, 2023
Shihao Zhao, Dongdong Chen, Yen-Chun Chen, Jianmin Bao, Shaozhe Hao, Lu Yuan, and Kwan-Yee K Wong. Uni-controlnet: All-in-one control to text-to-image diffusion models.Advances in Neural Information Processing Sys- tems, 36:11127–11150, 2023. 3
2023
-
[42]
Local conditional controlling for text-to-image diffu- sion models
Yibo Zhao, Liang Peng, Yang Yang, Zekai Luo, Hengjia Li, Yao Chen, Zheng Yang, Xiaofei He, Wei Zhao, Qinglin Lu, et al. Local conditional controlling for text-to-image diffu- sion models. InProceedings of the AAAI Conference on Ar- tificial Intelligence, pages 10492–10500, 2025. 3
2025
-
[43]
Judging llm-as-a-judge with mt-bench and chatbot arena.Advances in Neural Information Processing Systems, 36:46595–46623, 2023
Lianmin Zheng, Wei-Lin Chiang, Ying Sheng, Siyuan Zhuang, Zhanghao Wu, Yonghao Zhuang, Zi Lin, Zhuohan Li, Dacheng Li, Eric Xing, et al. Judging llm-as-a-judge with mt-bench and chatbot arena.Advances in Neural Information Processing Systems, 36:46595–46623, 2023. 3
2023
-
[44]
Unpaired image-to-image translation using cycle- consistent adversarial networks
Jun-Yan Zhu, Taesung Park, Phillip Isola, and Alexei A Efros. Unpaired image-to-image translation using cycle- consistent adversarial networks. InProceedings of the IEEE international conference on computer vision, pages 2223– 2232, 2017. 2
2017
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.