REVIEW 4 major objections 6 minor 52 references
DiffSensei: Bridging Multi-Modal LLMs and Diffusion Models for Customized Manga Generation
T0 review · 4 major / 6 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read The paper proposes customized manga generation and claims DiffSensei—a diffusion generator paired with a multimodal LLM adapter and masked layout attention—produces multi-character manga pages whose characters keep their identity while…
desk verdict MangaZero is the lasting contribution; DiffSensei works qualitatively, but thin quantitative evidence and unquantified character-ID residual error need addressing in review. 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 two-stage coupling of an SDXL diffusion generator with an MLLM adapter plus masked layout attention. In stage one, character images are encoded by CLIP and a manga-specific Magi encoder, resampled into a small set of tokens, and injected through separate character cross-attention layers where a mask restricts each character's tokens to its bounding box ($M[i,j]=0$ if token $i$ lies in character $j$'s box, $-\infty$ otherwise) while empty regions attend to the placeholder $q_{\text{void}}$; a trainable dialog embedding is expanded and masked into the noisy latent. In stage two, the MLLM—initialized from SEED-X—reads the panel caption and source character features and outputs adapted features, trained with LM loss on special tokens, MSE loss to ground-truth target features, and a diffusion loss through the frozen generator; at inference the final features blend source and adapted features as $c'_i=(1-\beta)c_i+\beta\hat{c}_i$ with $\beta=0.4$. Masked cross-attention is what prevents pixel copy-paste while enforcing layout; the MLLM is what makes characters text-adaptable.
What would settle it
Retrain the stage-2 adapter on MangaZero using the raw, uncorrected Magi character IDs instead of the human-calibrated ones: if DINO-C and human character-consistency scores do not fall, the paper's reliance on human calibration is not load-bearing; if they fall, that reliance is confirmed. Alternatively, have human judges identify which reference character appears in DiffSensei-generated panels across several expressions and poses; if they frequently cannot, the claimed text-adaptable identity preservation fails.
Extended reading notes
Core claim
On its own terms, the paper's discovery is that an MLLM can serve as the missing adapter between a text prompt and a diffusion generator for multi-character narrative images: instead of freezing a character to the pixel content of its reference image, the model converts character images into semantic tokens, lets the MLLM read those tokens together with the panel caption, and predicts target tokens that express the caption's requested state while preserving identity. The masked character cross-attention makes layout control cheap and explicit: each character's tokens attend only inside its bounding box, and character-free regions attend to a learnable placeholder token. Dialog boxes are encoded by adding a trainable embedding, masked to the dialog region, into the noisy latent, so the model learns where speech bubbles go without having to render readable dialogue. Two-stage training—first the generator with layout and dialog controls, then the MLLM adapter with language-model, mean-squared-error, and diffusion losses—is what lets the same character appear in different states across panels. The paper reports consistent wins over StoryDiffusion, AR-LDM, StoryGen, SEED-Story, and MS-Diffusion, and holds up on Manga109 characters the model never trained on.
Load-bearing premise
The method depends on MangaZero's character-ID labels correctly pairing the same character across panels; the paper says the raw automatic IDs were low-accuracy before human correction, so any residual mismatches would make the stage-2 adapter learn from wrong character pairs and break identity preservation.
Editorial extensions
If this is right
- A user can hand DiffSensei several reference images, a story summary, and per-panel layout boxes, and receive a manga page whose characters keep their look while adopting the expressions, poses, and actions written in each panel caption.
- Dialog control is spatial rather than textual: artists specify where speech bubbles go, the model fills in bubble placement, and the human edits the words, which sidesteps the poor long-text rendering of current text-to-image models.
- The ablation results tie text adaptivity to the MLLM stage: removing it lowers CLIP text-alignment and DINO-C character similarity, so caption-driven changes are not an automatic property of the diffusion model.
- Because Manga109 characters are never seen during training, the Manga109 evaluation results support the claim that DiffSensei generalizes to new, user-supplied characters rather than memorizing the 48 training series.
- The MangaZero dataset, with 427,147 annotated panels, provides the multi-character, multi-state pairs needed to train and evaluate this task, and is released for the community.
Reading between the lines
- Editorial inference: the same masked-attention-plus-MLLM-adapter recipe could transfer to other sequential narrative media—comics, webtoons, storyboards—since nothing except the Magi encoder and the manga-specific data ties it to black-and-white manga.
- Editorial inference: because the dialog embedding controls placement only, a natural next step is to pair DiffSensei with a text-rendering model or a font-aligned generator that fills readable dialogue inside the predicted bubbles, which would remove the remaining human editing step.
- Editorial inference: the paper's own admission that automatic character IDs were low-accuracy until human calibration suggests the dataset's ceiling is labeling cost; a scalable follow-up would test whether self-supervised character clustering across pages can replace most of the human correction without degrading the MLLM adapter.
- Editorial inference: the reported $\beta$ tradeoff between text alignment and identity preservation implies the framework exposes a tunable knob; an adaptive $\beta$ that increases when the caption calls for a large pose change and decreases for close-up identity shots might beat the fixed 0.4 setting.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a new task, customized manga generation, and introduces DiffSensei, a two-stage framework that combines an SDXL-based diffusion generator with an MLLM-based character feature adapter. Stage 1 trains a multi-character manga generator with masked cross-attention for character layout control and a dialog-embedding mechanism for dialog bounding boxes. Stage 2 fine-tunes LoRA and resampler weights of an MLLM (initialized from SEED-X) so that source character features are transformed into text-adapted target features, supervised by a combination of LM, MSE, and diffusion losses. The authors also introduce MangaZero, a dataset of 43,264 manga pages / 427,147 panels with character, panel, dialog, and caption annotations, and report quantitative, qualitative, and human-preference comparisons against story-visualization and customization baselines. The central claim is that DiffSensei enables text-adaptable character customization and outperforms existing models.
Significance. If the central claim is secured, this is a useful contribution to story visualization and manga generation. The task formulation is well motivated, and MangaZero appears to be the first large-scale manga dataset with full character, dialog, and caption annotations. The two-stage architecture is technically plausible: converting character images into a compact token space avoids naive copy-pasting, and the MLLM adapter is a reasonable way to inject text-dependent pose/expression changes. The paper reports extensive qualitative results, including unseen Manga109 characters, and appendix failure cases are candidly discussed. However, the quantitative evidence is currently weak: metric gaps over the strongest baseline are small and reported without variance, the human study is small and lacks statistical support, and the stage-2 MSE target is produced by the paper's own feature extractor. The released dataset and code, if fully open-sourced, would be valuable to the community and would enable independent verification.
major comments (4)
- [Section 3.2] The construction pipeline states that Magi's character ID labeling 'has relatively low accuracy' and that human annotators refine the labels, but no residual error rate after refinement is reported. This is load-bearing because Eq. (5) uses character IDs to pair source and target features of the same character across panels; any remaining cross-panel ID mismatch would train the MLLM adapter on wrong source-target pairs and create conflicting gradients with the diffusion loss. The paper should report post-refinement character-ID accuracy on a validation subset, or otherwise provide evidence that identity pairing is reliable. An independent evaluation on truly unseen identities (e.g., held-out series not in MangaZero) would also help separate identity preservation from memorization of training characters.
- [Tables 2a and 2b] The numerical advantages over MS-Diffusion are close to measurement noise: on MangaZero, FID is 0.407 vs 0.408, CLIP is 0.235 vs 0.229, DINO-I is 0.618 vs 0.610, and DINO-C is 0.651 vs 0.641; on Manga109, DINO-C is exactly tied at 0.600 and DINO-I differs by only 0.004. No error bars, multiple seeds, or significance tests are reported. Without these, the abstract's claim that DiffSensei 'outperforms existing models' is not statistically supported. Please add repeated evaluation runs with confidence intervals and, where feasible, paired significance tests on the same evaluation pages.
- [Section 4, Eq. (5)] The MSE loss in stage 2 compares the MLLM-predicted character features with target features produced by the same feature extractor (Eq. 1) that generates the input features. This means part of the training signal teaches the MLLM to imitate the frozen feature extractor's own embedding space, and the diffusion loss is the only image-level external objective. This is not a fatal circularity, but it weakens the interpretation of the reported CLIP and DINO gains: those gains could partly reflect adaptation to the extractor's feature geometry rather than genuine identity improvements. I would like to see an experiment where the MSE term is ablated, and/or an identity evaluation using a feature extractor not used anywhere in training.
- [Section 5.2 and Figure 5] The human preference study uses 15 raters and 10 anonymized page sets per method, and results are reported only as preference percentages without variance, per-item distributions, or inter-rater agreement. The appendix contains a second human evaluation of the MLLM module (Fig. 12) without any sample-size or statistical details. Human preference is a key part of the 'significant advancement' claim, so the paper should report confidence intervals and a significance test, or temper the claim to a descriptive preference trend.
minor comments (6)
- [Equation (2)] The notation for the character cross-attention projections is confusing: the text defines Wt_k and Wt_v as text projections but then uses the same symbols for the character key and value projections. Please use distinct symbols such as Wi_k and Wi_v.
- [Section 3.2] There is a typo: 'LLaV A-v1.6-34B' should be 'LLaVA-v1.6-34B'.
- [Table 1] 'publically' should be 'publicly' in the table caption or body text.
- [Section 5.2] Several baselines (AR-LDM, StoryGen, SEED-Story, StoryDiffusion) are not designed to accept character images and instead use reference images (marked with '*'), so the comparison is not fully apples-to-apples. An additional baseline that uses character images with box-level layout control, such as IP-Adapter with box conditioning, would make the contribution of the MLLM adapter clearer.
- [Abstract and Project Page] The abstract states that code, model, and dataset are open-sourced, but the paper gives only a project page URL and no license or availability details. Please provide a public repository or data-release statement with usage terms so the reproducibility claim can be verified.
- [Figure 5] The bar chart shows preference percentages without error bars or sample sizes in the figure itself. Please add confidence intervals or refer the reader to a table containing them, consistent with the major comment on statistical reporting.
Circularity Check
No significant circularity: the MLLM adapter's MSE target is self-referential in flavor, but the diffusion loss and external Manga109 benchmark keep the central claim grounded.
full rationale
The paper's core derivation is not circular. Stage 1 trains the diffusion-based image generator with a standard diffusion loss against real manga panels, an external pixel-level objective. Stage 2 trains the MLLM adapter using Eq. (5), where the MSE loss compares the predicted character features with target character embeddings extracted by the same frozen feature extractor; this gives the training a self-referential flavor, but it is not a definitional reduction because the target embedding is derived from real target images and the diffusion loss additionally supervises the final generated image. The central claim of text-adaptable character customization is evaluated on Manga109 characters that were unseen during training (Sec. 5.1), providing an external benchmark for identity preservation and generalization. No load-bearing self-citation, uniqueness theorem, or fitted-parameter-renamed-as-prediction is used. The admitted low raw character-ID accuracy in Sec. 3.2 is a data-quality and correctness risk, not a circularity, because the human refinement and subsequent external evaluation prevent the claim from reducing to its own inputs.
Assumptions & free parameters
free parameters (4)
- alpha (character attention weight) =
0.6
- beta (MLLM adapted feature blend weight) =
0.4
- MLLM loss weight lambda_mse =
6.0
- source character sampling rate from target panel =
0.5
assumptions (4)
- domain assumption Magi's automatic annotations, after human calibration, provide accurate panel boxes, character boxes, character IDs, and dialog boxes on MangaZero.
- ad hoc to paper Resampled CLIP and Magi image features preserve character identity while discarding pixel-level detail.
- domain assumption LLaVA-v1.6-34B generated panel captions are suitable text supervision.
- domain assumption SDXL and SEED-X pretrained weights transfer to black-and-white manga after fine-tuning.
Cite this review
Pith. "Pith review of DiffSensei: Bridging Multi-Modal LLMs and Diffusion Models for Customized Manga Generation." pith.science (2026). https://pith.science/paper/6RGGXSV7
@misc{pith2026241207589,
author = {Pith},
title = {Pith review of: DiffSensei: Bridging Multi-Modal LLMs and Diffusion Models for Customized Manga Generation},
year = {2026},
howpublished = {\url{https://pith.science/paper/6RGGXSV7}},
note = {Machine review of arXiv:2412.07589}
}
read the original abstract
Story visualization, the task of creating visual narratives from textual descriptions, has seen progress with text-to-image generation models. However, these models often lack effective control over character appearances and interactions, particularly in multi-character scenes. To address these limitations, we propose a new task: \textbf{customized manga generation} and introduce \textbf{DiffSensei}, an innovative framework specifically designed for generating manga with dynamic multi-character control. DiffSensei integrates a diffusion-based image generator with a multimodal large language model (MLLM) that acts as a text-compatible identity adapter. Our approach employs masked cross-attention to seamlessly incorporate character features, enabling precise layout control without direct pixel transfer. Additionally, the MLLM-based adapter adjusts character features to align with panel-specific text cues, allowing flexible adjustments in character expressions, poses, and actions. We also introduce \textbf{MangaZero}, a large-scale dataset tailored to this task, containing 43,264 manga pages and 427,147 annotated panels, supporting the visualization of varied character interactions and movements across sequential frames. Extensive experiments demonstrate that DiffSensei outperforms existing models, marking a significant advancement in manga generation by enabling text-adaptable character customization. The project page is https://jianzongwu.github.io/projects/diffsensei/.
Figures
Figures from the paper (15 more)
Reference graph
Works this paper leans on
- [2]
-
[3]
Jinbin Bai, Tian Ye, Wei Chow, Enxin Song, Qing-Guo Chen, Xiangtai Li, Zhen Dong, Lei Zhu, and Shuicheng Yan. Meissonic: Revitalizing masked generative trans- formers for efficient high-resolution text-to-image synthesis. arXiv preprint arXiv:2410.08261, 2024. 3
-
[4]
Anydoor: Zero-shot object-level im- age customization
Xi Chen, Lianghua Huang, Yu Liu, Yujun Shen, Deli Zhao, and Hengshuang Zhao. Anydoor: Zero-shot object-level im- age customization. In CVPR, 2024. 2
2024
-
[5]
Au- tostudio: Crafting consistent subjects in multi-turn interac- tive image generation
Junhao Cheng, Xi Lu, Hanhui Li, Khun Loun Zai, Baiqiao Yin, Yuhao Cheng, Yiqiang Yan, and Xiaodan Liang. Au- tostudio: Crafting consistent subjects in multi-turn interac- tive image generation. arXiv preprint arXiv:2406.01388 ,
-
[6]
Guiding instruction-based im- age editing via multimodal large language models
Tsu-Jui Fu, Wenze Hu, Xianzhi Du, William Yang Wang, Yinfei Yang, and Zhe Gan. Guiding instruction-based im- age editing via multimodal large language models. In ICLR,
-
[7]
An image is worth one word: Personalizing text-to- image generation using textual inversion
Rinon Gal, Yuval Alaluf, Yuval Atzmon, Or Patash- nik, Amit H Bermano, Gal Chechik, and Daniel Cohen- Or. An image is worth one word: Personalizing text-to- image generation using textual inversion. arXiv preprint arXiv:2208.01618, 2022. 2
arXiv 2022
-
[8]
Seed-x: Mul- timodal models with unified multi-granularity comprehen- sion and generation
Yuying Ge, Sijie Zhao, Jinguo Zhu, Yixiao Ge, Kun Yi, Lin Song, Chen Li, Xiaohan Ding, and Ying Shan. Seed-x: Mul- timodal models with unified multi-granularity comprehen- sion and generation. arXiv preprint arXiv:2404.14396, 2024. 2, 3, 6
arXiv 2024
-
[9]
Mix-of-show: Decentralized low- rank adaptation for multi-concept customization of diffusion models
Yuchao Gu, Xintao Wang, Jay Zhangjie Wu, Yujun Shi, Yun- peng Chen, Zihan Fan, Wuyou Xiao, Rui Zhao, Shuning Chang, Weijia Wu, et al. Mix-of-show: Decentralized low- rank adaptation for multi-concept customization of diffusion models. NeurIPS, 2024. 2
work page 2024
Show all 52 references
-
[10]
Imagine this! scripts to composi- tions to videos
Tanmay Gupta, Dustin Schwenk, Ali Farhadi, Derek Hoiem, and Aniruddha Kembhavi. Imagine this! scripts to composi- tions to videos. In ECCV, 2018. 2, 3
2018
-
[11]
A generalist facex via learning unified facial representation
Yue Han, Jiangning Zhang, Junwei Zhu, Xiangtai Li, Yan- hao Ge, Wei Li, Chengjie Wang, Yong Liu, Xiaoming Liu, and Ying Tai. A generalist facex via learning unified facial representation. arXiv preprint arXiv:2401.00551, 2023. 2
2023 arXiv
-
[12]
Face adapter for pre-trained diffusion models with fine- grained id and attribute control
Yue Han, Junwei Zhu, Keke He, Xu Chen, Yanhao Ge, Wei Li, Xiangtai Li, Jiangning Zhang, Chengjie Wang, and Yong Liu. Face adapter for pre-trained diffusion models with fine- grained id and attribute control. ECCV, 2024. 2
2024
-
[13]
Gans trained by a two time-scale update rule converge to a local nash equilib- rium
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. NeurIPS, 2017. 6
2017
-
[14]
Lora: Low-rank adaptation of large language models
Edward J Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen- Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. Lora: Low-rank adaptation of large language models. arXiv preprint arXiv:2106.09685, 2021. 6
2021 arXiv
-
[15]
Visual storytelling
Ting-Hao Huang, Francis Ferraro, Nasrin Mostafazadeh, Is- han Misra, Aishwarya Agrawal, Jacob Devlin, Ross Gir- shick, Xiaodong He, Pushmeet Kohli, Dhruv Batra, et al. Visual storytelling. In NAACL, 2016. 2
2016
-
[16]
Smartedit: Exploring com- plex instruction-based image editing with multimodal large language models
Yuzhou Huang, Liangbin Xie, Xintao Wang, Ziyang Yuan, Xiaodong Cun, Yixiao Ge, Jiantao Zhou, Chao Dong, Rui Huang, Ruimao Zhang, et al. Smartedit: Exploring com- plex instruction-based image editing with multimodal large language models. In CVPR, 2024. 2, 3
2024
-
[17]
Announcing black forest labs, 2024
Black Forest Labs. Announcing black forest labs, 2024. 5, 14
2024
-
[18]
Storygan: A sequential conditional gan for story visu- alization
Yitong Li, Zhe Gan, Yelong Shen, Jingjing Liu, Yu Cheng, Yuexin Wu, Lawrence Carin, David Carlson, and Jianfeng Gao. Storygan: A sequential conditional gan for story visu- alization. In CVPR, 2019. 1, 2, 3
2019
-
[19]
Photomaker: Customizing re- alistic human photos via stacked id embedding
Zhen Li, Mingdeng Cao, Xintao Wang, Zhongang Qi, Ming- Ming Cheng, and Ying Shan. Photomaker: Customizing re- alistic human photos via stacked id embedding. In CVPR,
-
[20]
Sketch2manga: Shaded manga screening from sketch with diffusion models
Jian Lin, Xueting Liu, Chengze Li, Minshan Xie, and Tien- Tsin Wong. Sketch2manga: Shaded manga screening from sketch with diffusion models. In ICIP, 2024. 2, 3
2024
-
[21]
Intelligent grimm-open-ended vi- sual storytelling via latent diffusion models
Chang Liu, Haoning Wu, Yujie Zhong, Xiaoyun Zhang, Yan- feng Wang, and Weidi Xie. Intelligent grimm-open-ended vi- sual storytelling via latent diffusion models. In CVPR, 2024. 1, 2, 3, 4, 6, 7, 11
2024
-
[22]
Visual instruction tuning
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning. arXiv preprint arXiv:2304.08485,
-
[23]
Decoupled weight decay regularization
I Loshchilov. Decoupled weight decay regularization. arXiv preprint arXiv:1711.05101, 2017. 6
2017 arXiv
-
[24]
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. 6
2023 arXiv
-
[25]
Synthesizing coherent story with auto-regressive la- tent diffusion models
Xichen Pan, Pengda Qin, Yuhong Li, Hui Xue, and Wenhu Chen. Synthesizing coherent story with auto-regressive la- tent diffusion models. In WACV, 2024. 1, 2, 3, 6, 7, 11
2024
-
[26]
Sdxl: Improving latent diffusion mod- els for high-resolution image synthesis
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. 5, 6, 8, 11, 14
2023 arXiv
-
[27]
Learn- ing transferable visual models from natural language super- vision
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learn- ing transferable visual models from natural language super- vision. In ICCV, 2021. 6
2021
-
[28]
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, 2022. 5
2022
-
[29]
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, 2023. 2, 3
2023
-
[30]
The manga whis- perer: Automatically generating transcriptions for comics
Ragav Sachdeva and Andrew Zisserman. The manga whis- perer: Automatically generating transcriptions for comics. In CVPR, 2024. 3, 4, 6, 8, 12, 14
2024
-
[31]
Tails tell tales: Chapter-wide manga transcriptions with char- acter names
Ragav Sachdeva, Gyungin Shin, and Andrew Zisserman. Tails tell tales: Chapter-wide manga transcriptions with char- acter names. arXiv preprint arXiv:2408.00298, 2024. 3
2024 arXiv
-
[32]
Rela- tionbooth: Towards relation-aware customized object gener- ation
Qingyu Shi, Lu Qi, Jianzong Wu, Jinbin Bai, Jingbo Wang, Yunhai Tong, Xiangtai Li, and Ming-Husang Yang. Rela- tionbooth: Towards relation-aware customized object gener- ation. arXiv preprint arXiv:2410.23280, 2024. 2
2024 arXiv
-
[33]
Mangagan: Unpaired photo-to-manga transla- tion based on the methodology of manga drawing
Hao Su, Jianwei Niu, Xuefeng Liu, Qingfeng Li, Jiahe Cui, and Ji Wan. Mangagan: Unpaired photo-to-manga transla- tion based on the methodology of manga drawing. In AAAI,
-
[34]
Generative multimodal models are in-context learners
Quan Sun, Yufeng Cui, Xiaosong Zhang, Fan Zhang, Qiy- ing Yu, Yueze Wang, Yongming Rao, Jingjing Liu, Tiejun Huang, and Xinlong Wang. Generative multimodal models are in-context learners. In CVPR, 2024. 2, 3
2024
-
[35]
One missing piece in vision and language: A survey on comics understanding
Emanuele Vivoli, Andrey Barsky, Mohamed Ali Souibgui, Artemis LLabres, Marco Bertini, and Dimosthenis Karatzas. One missing piece in vision and language: A survey on comics understanding. arXiv preprint arXiv:2409.09502 ,
-
[36]
Instantid: Zero-shot identity-preserving gener- ation in seconds
Qixun Wang, Xu Bai, Haofan Wang, Zekui Qin, and An- thony Chen. Instantid: Zero-shot identity-preserving gener- ation in seconds. arXiv preprint arXiv:2401.07519 , 2024. 2
2024 arXiv
-
[37]
Autostory: Generating di- verse storytelling images with minimal human effort
Wen Wang, Canyu Zhao, Hao Chen, Zhekai Chen, Kecheng Zheng, and Chunhua Shen. Autostory: Generating di- verse storytelling images with minimal human effort. arXiv preprint arXiv:2311.11243, 2023. 1, 2
2023 arXiv
-
[38]
Instancediffusion: Instance-level control for image generation
Xudong Wang, Trevor Darrell, Sai Saketh Rambhatla, Rohit Girdhar, and Ishan Misra. Instancediffusion: Instance-level control for image generation. In CVPR, 2024. 4
2024
-
[39]
Ms-diffusion: Multi-subject zero-shot im- age personalization with layout guidance
X Wang, Siming Fu, Qihan Huang, Wanggui He, and Hao Jiang. Ms-diffusion: Multi-subject zero-shot im- age personalization with layout guidance. arXiv preprint arXiv:2406.07209, 2024. 2, 3, 4, 6, 7, 8, 11
2024 arXiv
-
[40]
Emu3: Next-token prediction is all you need
Xinlong Wang, Xiaosong Zhang, Zhengxiong Luo, Quan Sun, Yufeng Cui, Jinsheng Wang, Fan Zhang, Yueze Wang, Zhen Li, Qiying Yu, et al. Emu3: Next-token prediction is all you need. arXiv preprint arXiv:2409.18869, 2024. 2, 3
2024 arXiv
-
[41]
Genartist: Multimodal llm as an agent for unified image gen- eration and editing
Zhenyu Wang, Aoxue Li, Zhenguo Li, and Xihui Liu. Genartist: Multimodal llm as an agent for unified image gen- eration and editing. In NeurIPS, 2024
2024
-
[42]
Towards language-driven video inpainting via multimodal large language models
Jianzong Wu, Xiangtai Li, Chenyang Si, Shangchen Zhou, Jingkang Yang, Jiangning Zhang, Yining Li, Kai Chen, Yun- hai Tong, Ziwei Liu, et al. Towards language-driven video inpainting via multimodal large language models. In CVPR,
-
[43]
Towards open vocabulary learning: A survey
Jianzong Wu, Xiangtai Li, Shilin Xu, Haobo Yuan, Henghui Ding, Yibo Yang, Xia Li, Jiangning Zhang, Yunhai Tong, Xudong Jiang, Bernard Ghanem, and Dacheng Tao. Towards open vocabulary learning: A survey. T-PAMI, 2024. 2
2024
-
[44]
Mo- tionbooth: Motion-aware customized text-to-video genera- tion
Jianzong Wu, Xiangtai Li, Yanhong Zeng, Jiangning Zhang, Qianyu Zhou, Yining Li, Yunhai Tong, and Kai Chen. Mo- tionbooth: Motion-aware customized text-to-video genera- tion. In NeurIPS, 2024. 2
2024
-
[45]
Boxdiff: Text-to-image synthesis with training-free box-constrained diffusion
Jinheng Xie, Yuexiang Li, Yawen Huang, Haozhe Liu, Wen- tian Zhang, Yefeng Zheng, and Mike Zheng Shou. Boxdiff: Text-to-image synthesis with training-free box-constrained diffusion. In ICCV, 2023. 4
2023
-
[46]
Seed-story: Multimodal long story generation with large language model
Shuai Yang, Yuying Ge, Yang Li, Yukang Chen, Yixiao Ge, Ying Shan, and Yingcong Chen. Seed-story: Multimodal long story generation with large language model. arXiv preprint arXiv:2407.08683, 2024. 1, 2, 3, 6, 7, 11
2024 arXiv
-
[47]
Ip- adapter: Text compatible image prompt adapter for text-to- image diffusion models
Hu Ye, Jun Zhang, Sibo Liu, Xiao Han, and Wei Yang. Ip- adapter: Text compatible image prompt adapter for text-to- image diffusion models. arXiv preprint arXiv:2308.06721,
-
[48]
Ai-driven background generation for manga illustrations: A deep generative model approach
Zhang Yunqian. Ai-driven background generation for manga illustrations: A deep generative model approach. ORES,
-
[49]
Magicbrush: A manually annotated dataset for instruction- guided image editing
Kai Zhang, Lingbo Mo, Wenhu Chen, Huan Sun, and Yu Su. Magicbrush: A manually annotated dataset for instruction- guided image editing. NeurIPS, 2024. 2, 3
2024
-
[50]
Generating manga from illustrations via mimicking manga creation workflow
Lvmin Zhang, Xinrui Wang, Qingnan Fan, Yi Ji, and Chun- ping Liu. Generating manga from illustrations via mimicking manga creation workflow. In CVPR, 2021. 2, 3
2021
-
[51]
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 ICCV, 2023. 4
2023
-
[52]
Cus- tomization assistant for text-to-image generation
Yufan Zhou, Ruiyi Zhang, Jiuxiang Gu, and Tong Sun. Cus- tomization assistant for text-to-image generation. In CVPR,
-
[53]
page results.pdf
Yupeng Zhou, Daquan Zhou, Ming-Ming Cheng, Jiashi Feng, and Qibin Hou. Storydiffusion: Consistent self- attention for long-range image and video generation. In NeurIPS, 2024. 1, 2, 6, 7, 8, 11 DiffSensei: Bridging Multi-Modal LLMs and Diffusion Models for Customized Manga Gene...
2024
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.