REVIEW 3 major objections 5 minor 121 references
Jodi: Unification of Visual Generation and Understanding via Joint Modeling
T0 review · 3 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read The paper claims that a single diffusion transformer with a role switch mechanism learns the joint distribution over the image domain and multiple label domains, and that from this model it can perform joint generation, controllable…
desk verdict Strong generation framework, weak perception evidence: Jodi's role-switch and Joint-1.6M are real contributions, but the understanding claims are undercut by circular evaluation. 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 mechanism is the role switch with masked linear attention and domain-invariant positional embeddings. At each training step every domain is randomly assigned one of three roles—[G] generation target, [C] condition input, [X] ignored—and the Switch module respectively adds noise, keeps values, or zeroes the tokens (Eq. 2). Training with rectified-flow velocity matching (Eq. 3) makes the model learn $p(\{y_m \mid \mathrm{role}_m=[G]\} \mid \{y_m \mid \mathrm{role}_m=[C]\})$ for all role assignments. Masked linear attention (Eq. 4) excludes [X] tokens from the computation and keeps complexity linear in the number of domains, while domain-invariant sinusoidal positional embeddings tie the same spatial location across domains so generated labels stay aligned with the image.
What would settle it
Train a Jodi variant on a perception task using only ground-truth labels (e.g., NYUv2 depth annotations) and compare its test error to the standard model trained on teacher-predicted labels from Joint-1.6M; if the ground-truth-trained variant does not match or beat the teacher-distilled model, the perception claim reduces to imitation of the teacher rather than learned understanding.
Extended reading notes
Core claim
Jodi learns $p(\{y_m \mid \mathrm{role}_m=[G]\} \mid \{y_m \mid \mathrm{role}_m=[C]\})$ for every random role assignment, which instantiates joint generation, controllable generation, and multi-label perception from one set of weights. The model uses a linear diffusion transformer with flow matching, where [G] tokens are noised and denoised, [C] tokens stay fixed, and [X] tokens are masked out of attention. Domain-invariant positional embeddings give an explicit cue for spatial alignment across domains. The claim is that a single architecture can both synthesize and perceive dense visual structure across eight domains, matching or surpassing specialist models on controllable generation and on depth, normal, albedo, and edge estimation, while enabling novel applications such as joint generation of images and labels and multi-conditional generation.
Load-bearing premise
The perception branch is trained mostly on pseudo-labels produced by specialist models (Depth Anything V2, Lotus, PiDiNet, OneFormer, OpenPose, RGB2X, Informative Drawings), and the same or equivalent models are used as evaluation baselines and condition extractors; if those pseudo-labels are biased or noisy, the reported understanding numbers measure distillation from the teachers rather than genuine visual understanding.
Editorial extensions
If this is right
- Joint generation produces an image and all seven label maps in one sample, with spatial alignment enforced by domain-invariant positional embeddings.
- Controllable generation accepts any subset of label domains as conditions; conditioning on multiple labels at once improves both fidelity and faithfulness (for example, FID drops from 13.6 to 10.2 when depth, normal, edge, and line art are combined).
- Multi-label perception predicts all label domains simultaneously from one image, and ensembling five samples reaches or exceeds single-task accuracy on depth, normal, and segmentation.
- The model extends to new visual domains by appending tokens and fine-tuning, demonstrated on doodle sketches, pixel, irradiance, and canny maps.
- The unified model achieves these results with substantially less data (290K images) and compute (8 RTX A6000 for 130K steps) than comparable unified systems.
Reading between the lines
- The role-switch recipe suggests that any discrete set of visual domains could be added by appending tokens and fine-tuning, so the same model could grow to dozens of label types or coordinate-based representations such as keypoints as numeric tokens rather than RGB maps.
- Joint generation of image-plus-labels may serve as a synthetic data engine: the model's own outputs could provide paired supervision for other perception models or augment scarce ground-truth datasets.
- The masked linear-attention trick is a generic complexity lever: if the number of domains grows to tens, only the ignored-domain masking needs to be maintained, so the linear-in-M complexity makes the 8-domain setting a proof of concept rather than an upper limit.
- A caution the paper does not dwell on: because the same teacher models produce both training labels and evaluation comparisons, the perception numbers likely reflect how well the model distills those teachers; an independent ground-truth benchmark would clarify how much genuine cross-domain understanding the joint model has.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Jodi, a linear diffusion transformer that jointly models the image domain and seven label domains (depth, normal, albedo, edge, line art, segmentation, human skeleton) through a role-switch mechanism. At each training iteration, each domain is randomly assigned a generation, condition, or ignore role, and the model is trained with flow matching to predict the velocity of the generation-target tokens given the condition tokens. This yields three capabilities: joint generation p(x, y1, ...), controllable generation p(x | y1, ...), and image perception p(y1, ... | x). The authors introduce Joint-1.6M, a dataset of 200k images with auto-generated labels from specialist models plus 90k images with ground-truth labels, and report extensive experiments on generation fidelity, condition faithfulness, and perception benchmarks. The paper also demonstrates extensibility to new domains and analyzes the efficiency of linear attention versus full attention.
Significance. If the perception results are independently validated, Jodi would be a notable advance toward a single diffusion model that both synthesizes and understands dense visual structure, with a clean probabilistic framing and a practical linear-attention backbone. The controllable generation results in Table 2 are strong: Jodi achieves the best FID among all listed methods on depth, normal, edge, and lineart conditions, and the visual results in Figures 3 and 4 show coherent multi-domain generation. The paper also contributes a public dataset, a detailed efficiency comparison, and a useful role-switch formulation that others may build on. However, the perception branch is trained on pseudo-labels from the same models that later serve as evaluation baselines and condition extractors. Under this protocol, the perception and LPIPS condition-faithfulness results are compatible with teacher distillation rather than independent visual understanding. The paper's own limitation statements (Section 5, Table 12, Appendix D) acknowledge parts of this issue, but the central 'understanding' claim is not yet established by the current evaluation.
major comments (3)
- [Section 3.3 and Section 4.2, Tables 3–8] The perception evaluation is confounded by the teacher models used to auto-label Joint-1.6M. Depth Anything V2 and Lotus generate the depth training labels, and Lotus is a depth/normal baseline in Tables 3 and 4; PiDiNet generates edge labels and is an edge baseline in Table 6; RGB2X generates albedo labels and is an albedo baseline in Table 5; OneFormer generates segmentation labels and is a segmentation baseline in Table 8. In addition, Table 2's LPIPS condition-faithfulness metric re-extracts conditions from generated images, but the extractor models are not specified; if they are the same or equivalent to the label-generation teachers, then low LPIPS can be achieved by learning to invert the teacher's input-output mapping. Under this protocol, the perception results measure consistency with the teachers rather than an independent understanding of visual structure. To support the unification claim, the authors should specify the extractors, evaluate on held-out ground-truth labels (e.g., the real depth maps in NYUv2, ScanNet, and DIODE are already used but are not sufficient), include a direct-distillation baseline trained only to replicate teacher outputs, or vary the teacher set and show that results are not tied to a specific teacher.
- [Section 4.2, Tables 3 and 5] The text states that Jodi 'consistently achieves superior or comparable results to the other unified models and specialist models.' This is contradicted by the reported numbers. In Table 3, Jodi (ensemble) has AbsRel 8.3 on NYUv2 and 9.9 on ScanNet, versus Lotus-D's 5.1 and 5.5; only DIODE is comparable. In Table 5, Jodi's albedo PSNR is 15.5 versus RGB2X's 20.6, and LPIPS is 0.31 versus 0.18. These differences are substantial and indicate that Jodi is not competitive with specialist models on these perception tasks. The claim should be restricted to competitiveness among unified models, and the perception results should be reported with appropriate caveats about the pseudo-label training setup.
- [Appendix E, Table 8 and Section 5] The semantic segmentation comparison is not a fair test of the perception claim. Jodi is trained to predict 12 manually defined superclasses, while the baseline methods (Uniformer, OneFormer) are trained on the original 150 ADE20K classes; the baselines' predictions are then mapped to the 12 superclasses. The appendix acknowledges this is 'somewhat unfair' to the baselines, yet the table is still used to support the claim of competitive understanding. Because Jodi is solving a much easier task and still achieves mIoU 57.5 versus OneFormer's 83.9, this table provides negative evidence rather than support. A fair comparison would train or adapt the baselines to the same 12-class task, or evaluate Jodi on the original 150 classes (which the current RGB-space design cannot handle, as stated in Section 5). The segmentation results should be reported with this limitation clearly stated in the main text.
minor comments (5)
- [Table 6] The header 'IDS' should be 'OIS' (Optimal Image Scale) to match standard edge-detection terminology.
- [Section 3.2, Eq. (4)] There is a missing space in the text 'When mj = 0in Eq. (4)'; the equation reference should be formatted as '0 in Eq. (4)'.
- [Section 4.2, Table 2 caption] The condition re-extraction models used to compute LPIPS are not specified. Please state which models are used for depth, normal, edge, lineart, and openpose extraction, as this is necessary for reproducibility and for assessing the metric's validity.
- [Appendix C, Figure 12] The y-axis label '48VRAM (GiB)' in the first panel appears to be a formatting error; it should read 'VRAM (GiB)'.
- [Appendix E, Tables 9 and 10] The footnotes indicate that some baseline numbers are sourced from Lotus and some are evaluated 'by ourselves following the Lotus protocol,' but the protocol details (e.g., image preprocessing, metric implementation) are not provided. Please include these details for reproducibility.
Circularity Check
No significant circularity: Jodi's perception and generation claims are evaluated against independent ground-truth benchmarks and are not forced by construction.
full rationale
The paper's central derivation is the standard probabilistic identity that the joint distribution p(x, y) entails the marginal and conditional distributions used for generation and perception, and the role-switch objective in Eq. (1)-(3) is a direct training objective for a family of conditionals, not a renamed version of the evaluation metrics. The main circularity concern raised by a skeptical reader is that Joint-1.6M is auto-labeled by specialist teachers (Depth Anything V2, Lotus, PiDiNet, RGB2X, OneFormer, OpenPose, Informative Drawings) and that the same or equivalent models appear as baselines and condition extractors. That overlap would be problematic if the evaluation measured only agreement with those teachers, but the perception results are reported on independent ground-truth benchmarks: NYUv2, ScanNet, DIODE, iBims, Hypersim, BSDS500, and ADE20K. On those benchmarks Jodi is frequently worse than the teacher baselines (e.g., depth AbsRel 10.1 vs. Lotus-D 5.1 on NYUv2; albedo PSNR 15.5 vs. RGB2X 20.6 on Hypersim; segmentation mIoU 57.5 vs. OneFormer 83.9 on ADE20K), so the results do not reduce by construction to reproducing the teachers' outputs. The controllable-generation LPIPS/FID protocol re-extracts conditions using standard specialist models, but this is a standard faithfulness metric and does not constitute fitting the metric: the training loss in Eq. (3) is flow matching on latent tokens, with no teacher-extractor loss. The paper explicitly acknowledges pseudo-label limitations and the absence of ground-truth multi-label supervision in Appendix E's Table 12 discussion, which indicates transparency rather than a hidden circular derivation. No load-bearing self-citation, uniqueness theorem, or ansatz-smuggling citation is present; the cited Sana backbone and external specialists are used as standard building blocks and baselines. The mathematical claim connecting joint distributions to conditionals is an external probabilistic fact, and the model's ability to perform joint generation, controllable generation, and perception follows from the role-switch training distribution. Therefore, the paper's central claims are self-contained against external benchmarks and no circular step is exhibited.
Assumptions & free parameters
free parameters (4)
- Classifier-free guidance scale =
4.5
- Number of segmentation superclasses =
12
- Ensemble sampling count =
5
- Role assignment distribution
assumptions (5)
- standard math Joint distribution identities: p(x,y) determines p(x), p(y), p(x|y), and p(y|x)
- standard math Flow matching and rectified flow objectives learn the target conditional distributions
- domain assumption Pseudo-labels from specialist models are adequate supervision for perception tasks
- domain assumption Text and labels are conditionally independent given the image
- domain assumption Linear attention preserves the inter-domain correspondence needed for spatial alignment
Cite this review
Pith. "Pith review of Jodi: Unification of Visual Generation and Understanding via Joint Modeling." pith.science (2026). https://pith.science/paper/U4RVVOFJ
@misc{pith2026250519084,
author = {Pith},
title = {Pith review of: Jodi: Unification of Visual Generation and Understanding via Joint Modeling},
year = {2026},
howpublished = {\url{https://pith.science/paper/U4RVVOFJ}},
note = {Machine review of arXiv:2505.19084}
}
read the original abstract
Visual generation and understanding are two deeply interconnected aspects of human intelligence, yet they have been traditionally treated as separate tasks in machine learning. In this paper, we propose Jodi, a diffusion framework that unifies visual generation and understanding by jointly modeling the image domain and multiple label domains. Specifically, Jodi is built upon a linear diffusion transformer along with a role switch mechanism, which enables it to perform three particular types of tasks: (1) joint generation, where the model simultaneously generates images and multiple labels; (2) controllable generation, where images are generated conditioned on any combination of labels; and (3) image perception, where multiple labels can be predicted at once from a given image. Furthermore, we present the Joint-1.6M dataset, which contains 200,000 high-quality images collected from public sources, automatic labels for 7 visual domains, and LLM-generated captions. Extensive experiments demonstrate that Jodi excels in both generation and understanding tasks and exhibits strong extensibility to a wider range of visual domains. Code is available at https://github.com/VIPL-GENUN/Jodi.
Figures
Figures from the paper (16 more)
Reference graph
Works this paper leans on
-
[1]
Phi-3 technical report: A highly capable language model locally on your phone
Marah Abdin, Jyoti Aneja, Hany Awadalla, Ahmed Awadallah, Ammar Ahmad Awan, Nguyen Bach, Amit Bahree, Arash Bakhtiari, Jianmin Bao, Harkirat Behl, et al. Phi-3 technical report: A highly capable language model locally on your phone. arXiv preprint arXiv:2404.14219, 2024
arXiv 2024
-
[2]
Building normalizing flows with stochastic inter- polants
Michael Samuel Albergo and Eric Vanden-Eijnden. Building normalizing flows with stochastic inter- polants. In The Eleventh International Conference on Learning Representations, 2023
2023
-
[3]
SwiftSketch: A Diffusion Model for Image-to-Vector Sketch Generation
Ellie Arar, Yarden Frenkel, Daniel Cohen-Or, Ariel Shamir, and Yael Vinker. Swiftsketch: A diffusion model for image-to-vector sketch generation. arXiv preprint arXiv:2502.08642, 2025
work page Pith review arXiv 2025
-
[4]
Contour detection and hierarchical image segmentation
Pablo Arbelaez, Michael Maire, Charless Fowlkes, and Jitendra Malik. Contour detection and hierarchical image segmentation. IEEE transactions on pattern analysis and machine intelligence, 33(5):898–916, 2010
2010
-
[5]
ediff-i: Text-to-image diffusion models with an ensemble of expert denoisers
Yogesh Balaji, Seungjun Nah, Xun Huang, Arash Vahdat, Jiaming Song, Qinsheng Zhang, Karsten Kreis, Miika Aittala, Timo Aila, Samuli Laine, et al. ediff-i: Text-to-image diffusion models with an ensemble of expert denoisers. arXiv preprint arXiv:2211.01324, 2022
arXiv 2022
-
[6]
One transformer fits all distributions in multi-modal diffusion at scale
Fan Bao, Shen Nie, Kaiwen Xue, Chongxuan Li, Shi Pu, Yaole Wang, Gang Yue, Yue Cao, Hang Su, and Jun Zhu. One transformer fits all distributions in multi-modal diffusion at scale. In International Conference on Machine Learning, pages 1692–1717. PMLR, 2023
2023
-
[7]
BlackForestLab. Flux.1. https://blackforestlabs.io/flux-1/
-
[8]
Z. Cao, G. Hidalgo Martinez, T. Simon, S. Wei, and Y . A. Sheikh. Openpose: Realtime multi-person 2d pose estimation using part affinity fields. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2019
2019
Show all 121 references
-
[9]
Intrinsic image decomposition via ordinal shading
Chris Careaga and Ya˘gız Aksoy. Intrinsic image decomposition via ordinal shading. ACM Transactions on Graphics, 43(1):1–24, 2023
2023
-
[10]
Colorful diffuse intrinsic image decomposition in the wild
Chris Careaga and Ya ˘gız Aksoy. Colorful diffuse intrinsic image decomposition in the wild. ACM Transactions on Graphics (TOG), 43(6):1–12, 2024
2024
-
[11]
End-to-end object detection with transformers
Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and Sergey Zagoruyko. End-to-end object detection with transformers. In European Conference on Computer Vision, pages 213–229, 2020
2020
-
[12]
Artists as experts in visual cognition: An update
Rebecca Chamberlain, Jennifer E Drake, Aaron Kozbelt, Rachel Hickman, Joseph Siev, and Johan Wagemans. Artists as experts in visual cognition: An update. Psychology of Aesthetics, Creativity, and the Arts, 13(1):58, 2019
2019
-
[13]
Learning to generate line drawings that convey ge- ometry and semantics
Caroline Chan, Frédo Durand, and Phillip Isola. Learning to generate line drawings that convey ge- ometry and semantics. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 7915–7925, 2022
2022
-
[14]
Pixart- σ: Weak-to-strong training of diffusion transformer for 4k text-to-image generation
Junsong Chen, Chongjian Ge, Enze Xie, Yue Wu, Lewei Yao, Xiaozhe Ren, Zhongdao Wang, Ping Luo, Huchuan Lu, and Zhenguo Li. Pixart- σ: Weak-to-strong training of diffusion transformer for 4k text-to-image generation. In European Conference on Computer Vision, pages 74–91. Sprin...
2024
-
[15]
Deep compression autoencoder for efficient high-resolution diffusion models
Junyu Chen, Han Cai, Junsong Chen, Enze Xie, Shang Yang, Haotian Tang, Muyang Li, and Song Han. Deep compression autoencoder for efficient high-resolution diffusion models. In The Thirteenth International Conference on Learning Representations, 2025
2025
-
[16]
Anydoor: Zero-shot object-level image customization
Xi Chen, Lianghua Huang, Yu Liu, Yujun Shen, Deli Zhao, and Hengshuang Zhao. Anydoor: Zero-shot object-level image customization. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 6593–6602, 2024
2024
-
[17]
Unireal: Universal image generation and editing via learning real-world dynamics
Xi Chen, Zhifei Zhang, He Zhang, Yuqian Zhou, Soo Ye Kim, Qing Liu, Yijun Li, Jianming Zhang, Nanxuan Zhao, Yilin Wang, et al. Unireal: Universal image generation and editing via learning real-world dynamics. arXiv preprint arXiv:2412.07774, 2024
2024 arXiv
-
[18]
Janus-pro: Unified multimodal understanding and generation with data and model scaling
Xiaokang Chen, Zhiyu Wu, Xingchao Liu, Zizheng Pan, Wen Liu, Zhenda Xie, Xingkai Yu, and Chong Ruan. Janus-pro: Unified multimodal understanding and generation with data and model scaling. arXiv preprint arXiv:2501.17811, 2025. 10
2025 arXiv
-
[19]
Idadapter: Learning mixed features for tuning-free personalization of text-to-image models
Siying Cui, Jia Guo, Xiang An, Jiankang Deng, Yongle Zhao, Xinyu Wei, and Ziyong Feng. Idadapter: Learning mixed features for tuning-free personalization of text-to-image models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 950–959, 2024
2024
-
[20]
Scannet: Richly-annotated 3d reconstructions of indoor scenes
Angela Dai, Angel X Chang, Manolis Savva, Maciej Halber, Thomas Funkhouser, and Matthias Nießner. Scannet: Richly-annotated 3d reconstructions of indoor scenes. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 5828–5839, 2017
2017
-
[21]
Flashattention: Fast and memory- efficient exact attention with io-awareness.Advances in neural information processing systems, 35:16344– 16359, 2022
Tri Dao, Dan Fu, Stefano Ermon, Atri Rudra, and Christopher Ré. Flashattention: Fast and memory- efficient exact attention with io-awareness.Advances in neural information processing systems, 35:16344– 16359, 2022
2022
-
[22]
Imagenet: A large-scale hierarchical image database
Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pages 248–255. Ieee, 2009
2009
-
[23]
Nice: Non-linear independent components estimation
Laurent Dinh, David Krueger, and Yoshua Bengio. Nice: Non-linear independent components estimation. arXiv preprint arXiv:1410.8516, 2014
2014 arXiv
-
[24]
Evaluative and generative modes of thought during the creative process
Melissa Ellamil, Charles Dobson, Mark Beeman, and Kalina Christoff. Evaluative and generative modes of thought during the creative process. Neuroimage, 59(2):1783–1794, 2012
2012
-
[25]
Scaling rectified flow transformers for high-resolution image synthesis
Patrick Esser, Sumith Kulal, Andreas Blattmann, Rahim Entezari, Jonas Müller, Harry Saini, Yam Levi, Dominik Lorenz, Axel Sauer, Frederic Boesel, Dustin Podell, Tim Dockhorn, Zion English, and Robin Rombach. Scaling rectified flow transformers for high-resolution image synthes...
2024
-
[26]
Taming transformers for high-resolution image synthesis
Patrick Esser, Robin Rombach, and Bjorn Ommer. Taming transformers for high-resolution image synthesis. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 12873–12883, 2021
2021
-
[27]
The surprisingly powerful influence of drawing on memory
Myra A Fernandes, Jeffrey D Wammes, and Melissa E Meade. The surprisingly powerful influence of drawing on memory. Current Directions in Psychological Science, 27(5):302–308, 2018
2018
-
[28]
Univg: A generalist diffusion model for unified image generation and editing
Tsu-Jui Fu, Yusu Qian, Chen Chen, Wenze Hu, Zhe Gan, and Yinfei Yang. Univg: A generalist diffusion model for unified image generation and editing. arXiv preprint arXiv:2503.12652, 2025
2025 arXiv
-
[29]
Geowizard: Unleashing the diffusion priors for 3d geometry estimation from a single image
Xiao Fu, Wei Yin, Mu Hu, Kaixuan Wang, Yuexin Ma, Ping Tan, Shaojie Shen, Dahua Lin, and Xiaoxiao Long. Geowizard: Unleashing the diffusion priors for 3d geometry estimation from a single image. In European Conference on Computer Vision, pages 241–258. Springer, 2024
2024
-
[30]
pexels-portrait
gaunernst. pexels-portrait. https://huggingface.co/datasets/gaunernst/pexels-portrait
-
[31]
Rich feature hierarchies for accurate object detection and semantic segmentation
Ross Girshick, Jeff Donahue, Trevor Darrell, and Jitendra Malik. Rich feature hierarchies for accurate object detection and semantic segmentation. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 580–587, 2014
2014
-
[32]
Generative adversarial nets
Ian J Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. Advances in neural information processing systems, 27, 2014
2014
-
[33]
Pulid: Pure and lightning id customization via contrastive alignment
Zinan Guo, Yanze Wu, Chen Zhuowei, Peng Zhang, Qian He, et al. Pulid: Pure and lightning id customization via contrastive alignment. Advances in neural information processing systems, 37:36777– 36804, 2024
2024
-
[34]
Svdiff: Compact parameter space for diffusion fine-tuning
Ligong Han, Yinxiao Li, Han Zhang, Peyman Milanfar, Dimitris Metaxas, and Feng Yang. Svdiff: Compact parameter space for diffusion fine-tuning. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 7323–7334, 2023
2023
-
[35]
Transformer language models without positional encodings still learn positional information
Adi Haviv, Ori Ram, Ofir Press, Peter Izsak, and Omer Levy. Transformer language models without positional encodings still learn positional information. In Findings of the Association for Computational Linguistics: EMNLP 2022, pages 1382–1390, 2022
2022
-
[36]
Lotus: Diffusion-based visual foundation model for high-quality dense prediction
Jing He, Haodong LI, Wei Yin, Yixun Liang, Leheng Li, Kaiqiang Zhou, Hongbo Zhang, Bingbing Liu, and Ying-Cong Chen. Lotus: Diffusion-based visual foundation model for high-quality dense prediction. In The Thirteenth International Conference on Learning Representations, 2025
2025
-
[37]
Mask r-cnn
Kaiming He, Georgia Gkioxari, Piotr Dollár, and Ross Girshick. Mask r-cnn. In Proceedings of the IEEE international conference on computer vision, pages 2961–2969, 2017. 11
2017
-
[38]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 770–778, 2016
2016
-
[39]
Gans trained by a two time-scale update rule converge to a local nash equilibrium
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 equilibrium. Advances in neural information processing systems, 30, 2017
2017
-
[40]
Denoising diffusion probabilistic models
Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffusion probabilistic models. Advances in neural information processing systems, 33:6840–6851, 2020
2020
-
[41]
Classifier-free diffusion guidance
Jonathan Ho and Tim Salimans. Classifier-free diffusion guidance. arXiv preprint arXiv:2207.12598, 2022
2022 arXiv
-
[42]
Oneformer: One transformer to rule universal image segmentation
Jitesh Jain, Jiachen Li, Mang Tik Chiu, Ali Hassani, Nikita Orlov, and Humphrey Shi. Oneformer: One transformer to rule universal image segmentation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 2989–2998, 2023
2023
-
[43]
A style-based generator architecture for generative adversarial networks
Tero Karras, Samuli Laine, and Timo Aila. A style-based generator architecture for generative adversarial networks. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 4401–4410, 2019
2019
-
[44]
Transformers are rnns: Fast autoregressive transformers with linear attention
Angelos Katharopoulos, Apoorv Vyas, Nikolaos Pappas, and François Fleuret. Transformers are rnns: Fast autoregressive transformers with linear attention. In International conference on machine learning, pages 5156–5165. PMLR, 2020
2020
-
[45]
The impact of positional encoding on length generalization in transformers
Amirhossein Kazemnejad, Inkit Padhi, Karthikeyan Natesan Ramamurthy, Payel Das, and Siva Reddy. The impact of positional encoding on length generalization in transformers. Advances in Neural Information Processing Systems, 36:24892–24928, 2023
2023
-
[46]
Repurposing diffusion-based image generators for monocular depth estimation
Bingxin Ke, Anton Obukhov, Shengyu Huang, Nando Metzger, Rodrigo Caye Daudt, and Konrad Schindler. Repurposing diffusion-based image generators for monocular depth estimation. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 9492–9502, 2024
2024
-
[47]
Auto-encoding variational bayes
Diederik P Kingma and Max Welling. Auto-encoding variational bayes. arXiv preprint arXiv:1312.6114, 2013
2013 arXiv
-
[48]
Segment anything
Alexander Kirillov, Eric Mintun, Nikhila Ravi, Hanzi Mao, Chloe Rolland, Laura Gustafson, Tete Xiao, Spencer Whitehead, Alexander C Berg, Wan-Yen Lo, et al. Segment anything. In Proceedings of the IEEE/CVF international conference on computer vision, pages 4015–4026, 2023
2023
-
[49]
Evaluation of cnn-based single- image depth estimation methods
Tobias Koch, Lukas Liebel, Friedrich Fraundorfer, and Marco Korner. Evaluation of cnn-based single- image depth estimation methods. In Proceedings of the European Conference on Computer Vision (ECCV) Workshops, pages 0–0, 2018
2018
-
[50]
Intrinsic image diffusion for indoor single- view material estimation
Peter Kocsis, Vincent Sitzmann, and Matthias Nießner. Intrinsic image diffusion for indoor single- view material estimation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 5198–5208, 2024
2024
-
[51]
Artists as experts in visual cognition
Aaron Kozbelt. Artists as experts in visual cognition. Visual cognition, 8(6):705–723, 2001
2001
-
[52]
Imagenet classification with deep convolutional neural networks
Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. Advances in neural information processing systems, 25, 2012
2012
-
[53]
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
1931
-
[54]
One diffusion to generate them all
Duong H Le, Tuan Pham, Sangho Lee, Christopher Clark, Aniruddha Kembhavi, Stephan Mandt, Ranjay Krishna, and Jiasen Lu. One diffusion to generate them all. arXiv preprint arXiv:2411.16318, 2024
2024 arXiv
-
[55]
Gradient-based learning applied to document recognition
Yann LeCun, Léon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998
1998
-
[56]
Exploiting diffusion prior for generalizable dense prediction
Hsin-Ying Lee, Hung-Yu Tseng, and Ming-Hsuan Yang. Exploiting diffusion prior for generalizable dense prediction. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 7861–7871, 2024. 12
2024
-
[57]
Playground v2
Daiqing Li, Aleks Kamko, Ehsan Akhgari, Ali Sabet, Linmiao Xu, and Suhail Doshi. Playground v2. 5: Three insights towards enhancing aesthetic quality in text-to-image generation. arXiv preprint arXiv:2402.17245, 2024
2024 arXiv
-
[58]
Blip-2: Bootstrapping language-image pre- training with frozen image encoders and large language models
Junnan Li, Dongxu Li, Silvio Savarese, and Steven Hoi. Blip-2: Bootstrapping language-image pre- training with frozen image encoders and large language models. In International conference on machine learning, pages 19730–19742. PMLR, 2023
2023
-
[59]
Uniformer: Unified transformer for efficient spatial-temporal representation learning
Kunchang Li, Yali Wang, Gao Peng, Guanglu Song, Yu Liu, Hongsheng Li, and Yu Qiao. Uniformer: Unified transformer for efficient spatial-temporal representation learning. In International Conference on Learning Representations, 2022
2022
-
[60]
Gligen: Open-set grounded text-to-image generation
Yuheng Li, Haotian Liu, Qingyang Wu, Fangzhou Mu, Jianwei Yang, Jianfeng Gao, Chunyuan Li, and Yong Jae Lee. Gligen: Open-set grounded text-to-image generation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 22511–22521, 2023
2023
-
[61]
Photomaker: Customizing realistic human photos via stacked id embedding
Zhen Li, Mingdeng Cao, Xintao Wang, Zhongang Qi, Ming-Ming Cheng, and Ying Shan. Photomaker: Customizing realistic human photos via stacked id embedding. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 8640–8650, 2024
2024
-
[62]
Dual diffusion for unified image generation and understanding
Zijie Li, Henry Li, Yichun Shi, Amir Barati Farimani, Yuval Kluger, Linjie Yang, and Peng Wang. Dual diffusion for unified image generation and understanding. arXiv preprint arXiv:2501.00289, 2024
2024 arXiv
-
[63]
Pixwizard: Versatile image-to-image visual assistant with open-language instructions
Weifeng Lin, Xinyu Wei, Renrui Zhang, Le Zhuo, Shitian Zhao, Siyuan Huang, Junlin Xie, Peng Gao, and Hongsheng Li. Pixwizard: Versatile image-to-image visual assistant with open-language instructions. In The Thirteenth International Conference on Learning Representations, 2025
2025
-
[64]
Yaron Lipman, Ricky T. Q. Chen, Heli Ben-Hamu, Maximilian Nickel, and Matthew Le. Flow matching for generative modeling. In The Eleventh International Conference on Learning Representations, 2023
2023
-
[65]
Flow straight and fast: Learning to generate and transfer data with rectified flow
Xingchao Liu, Chengyue Gong, and qiang liu. Flow straight and fast: Learning to generate and transfer data with rectified flow. In The Eleventh International Conference on Learning Representations, 2023
2023
-
[66]
Dpm-solver++: Fast solver for guided sampling of diffusion probabilistic models
Cheng Lu, Yuhao Zhou, Fan Bao, Jianfei Chen, Chongxuan Li, and Jun Zhu. Dpm-solver++: Fast solver for guided sampling of diffusion probabilistic models. arXiv preprint arXiv:2211.01095, 2022
2022 arXiv
-
[67]
Came: Confidence- guided adaptive memory efficient optimization
Yang Luo, Xiaozhe Ren, Zangwei Zheng, Zhuo Jiang, Xin Jiang, and Yang You. Came: Confidence- guided adaptive memory efficient optimization. In Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (V olume1: Long Papers), pages 4442–4453, 2023
2023
-
[68]
T2i- adapter: Learning adapters to dig out more controllable ability for text-to-image diffusion models
Chong Mou, Xintao Wang, Liangbin Xie, Yanze Wu, Jian Zhang, Zhongang Qi, and Ying Shan. T2i- adapter: Learning adapters to dig out more controllable ability for text-to-image diffusion models. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, pages 4...
2024
-
[69]
Novelai improvements on stable diffusion, 2022
NovelAI. Novelai improvements on stable diffusion, 2022
2022
-
[70]
pexels-photos-janpf
opendiffusionai. pexels-photos-janpf. https://huggingface.co/datasets/opendiffusionai/ pexels-photos-janpf
-
[71]
Scalable diffusion models with transformers
William Peebles and Saining Xie. Scalable diffusion models with transformers. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 4195–4205, 2023
2023
-
[72]
Ld-znet: A latent diffusion approach for text-based image segmentation
Koutilya Pnvr, Bharat Singh, Pallabi Ghosh, Behjat Siddiquie, and David Jacobs. Ld-znet: A latent diffusion approach for text-based image segmentation. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 4157–4168, 2023
2023
-
[73]
Unicontrol: A unified diffusion model for controllable visual generation in the wild
Can Qin, Shu Zhang, Ning Yu, Yihao Feng, Xinyi Yang, Yingbo Zhou, Huan Wang, Juan Carlos Niebles, Caiming Xiong, Silvio Savarese, et al. Unicontrol: A unified diffusion model for controllable visual generation in the wild. Advances in Neural Information Processing Systems, 36, 2024
2024
-
[74]
Hypersim: A photorealistic synthetic dataset for holistic indoor scene understanding
Mike Roberts, Jason Ramapuram, Anurag Ranjan, Atulit Kumar, Miguel Angel Bautista, Nathan Paczan, Russ Webb, and Joshua M Susskind. Hypersim: A photorealistic synthetic dataset for holistic indoor scene understanding. In Proceedings of the IEEE/CVF international conference on ...
2021
-
[75]
High-resolution image synthesis with latent diffusion models
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Björn Ommer. High-resolution image synthesis with latent diffusion models. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 10684–10695, 2022. 13
2022
-
[76]
U-net: Convolutional networks for biomedical image segmentation
Olaf Ronneberger, Philipp Fischer, and Thomas Brox. U-net: Convolutional networks for biomedical image segmentation. In Medical image computing and computer-assisted intervention–MICCAI 2015: 18th international conference, Munich, Germany, October 5-9, 2015, proceedings, part ...
2015
-
[77]
Dream- booth: Fine tuning text-to-image diffusion models for subject-driven generation
Nataniel Ruiz, Yuanzhen Li, Varun Jampani, Yael Pritch, Michael Rubinstein, and Kfir Aberman. Dream- booth: Fine tuning text-to-image diffusion models for subject-driven generation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 225...
2023
-
[78]
Photorealistic text-to- image diffusion models with deep language understanding
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 informatio...
2022
-
[79]
Ziplora: Any subject in any style by effectively merging loras
Viraj Shah, Nataniel Ruiz, Forrester Cole, Erika Lu, Svetlana Lazebnik, Yuanzhen Li, and Varun Jampani. Ziplora: Any subject in any style by effectively merging loras. In European Conference on Computer Vision, pages 422–438. Springer, 2024
2024
-
[80]
Indoor segmentation and support inference from rgbd images
Nathan Silberman, Derek Hoiem, Pushmeet Kohli, and Rob Fergus. Indoor segmentation and support inference from rgbd images. In Computer Vision–ECCV 2012: 12th European Conference on Computer Vision, Florence, Italy, October 7-13, 2012, Proceedings, Part V 12, pages 746–760. Spr...
2012
-
[81]
Very deep convolutional networks for large-scale image recognition
Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. arXiv preprint arXiv:1409.1556, 2014
2014 arXiv
-
[82]
Deep unsupervised learning using nonequilibrium thermodynamics
Jascha Sohl-Dickstein, Eric Weiss, Niru Maheswaranathan, and Surya Ganguli. Deep unsupervised learning using nonequilibrium thermodynamics. In International conference on machine learning, pages 2256–2265. PMLR, 2015
2015
-
[83]
Generative modeling by estimating gradients of the data distribution
Yang Song and Stefano Ermon. Generative modeling by estimating gradients of the data distribution. Advances in neural information processing systems, 32, 2019
2019
-
[84]
Score-based generative modeling through stochastic differential equations
Yang Song, Jascha Sohl-Dickstein, Diederik P Kingma, Abhishek Kumar, Stefano Ermon, and Ben Poole. Score-based generative modeling through stochastic differential equations. In International Conference on Learning Representations, 2021
2021
-
[85]
Pixel difference networks for efficient edge detection
Zhuo Su, Wenzhe Liu, Zitong Yu, Dewen Hu, Qing Liao, Qi Tian, Matti Pietikäinen, and Li Liu. Pixel difference networks for efficient edge detection. In Proceedings of the IEEE/CVF international conference on computer vision, pages 5117–5127, 2021
2021
-
[86]
Going deeper with convolutions
Christian Szegedy, Wei Liu, Yangqing Jia, Pierre Sermanet, Scott Reed, Dragomir Anguelov, Dumitru Erhan, Vincent Vanhoucke, and Andrew Rabinovich. Going deeper with convolutions. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 1–9, 2015
2015
-
[87]
Ominicontrol: Minimal and universal control for diffusion transformer
Zhenxiong Tan, Songhua Liu, Xingyi Yang, Qiaochu Xue, and Xinchao Wang. Ominicontrol: Minimal and universal control for diffusion transformer. arXiv preprint arXiv:2411.15098, 2024
2024 arXiv
-
[88]
Chameleon: Mixed-modal early-fusion foundation models
Chameleon Team. Chameleon: Mixed-modal early-fusion foundation models. arXiv preprint arXiv:2405.09818, 2024
2024 arXiv
-
[89]
Pixel recurrent neural networks
Aäron Van Den Oord, Nal Kalchbrenner, and Koray Kavukcuoglu. Pixel recurrent neural networks. In International conference on machine learning, pages 1747–1756. PMLR, 2016
2016
-
[90]
Diode: A dense indoor and outdoor depth dataset
Igor Vasiljevic, Nick Kolkin, Shanyi Zhang, Ruotian Luo, Haochen Wang, Falcon Z Dai, Andrea F Daniele, Mohammadreza Mostajabi, Steven Basart, Matthew R Walter, et al. Diode: A dense indoor and outdoor depth dataset. arXiv preprint arXiv:1908.00463, 2019
1908 arXiv
-
[91]
Attention is all you need
A Vaswani. Attention is all you need. Advances in Neural Information Processing Systems, 2017
2017
-
[92]
Mmgen: Unified multi-modal image generation and understanding in one go
Jiepeng Wang, Zhaoqing Wang, Hao Pan, Yuan Liu, Dongdong Yu, Changhu Wang, and Wenping Wang. Mmgen: Unified multi-modal image generation and understanding in one go. arXiv preprint arXiv:2503.20644, 2025
2025 arXiv
-
[93]
Qwen2-vl: Enhancing vision-language model’s perception of the world at any resolution
Peng Wang, Shuai Bai, Sinan Tan, Shijie Wang, Zhihao Fan, Jinze Bai, Keqin Chen, Xuejing Liu, Jialin Wang, Wenbin Ge, et al. Qwen2-vl: Enhancing vision-language model’s perception of the world at any resolution. arXiv preprint arXiv:2409.12191, 2024
2024 arXiv
-
[94]
Instantid: Zero-shot identity- preserving generation in seconds
Qixun Wang, Xu Bai, Haofan Wang, Zekui Qin, and Anthony Chen. Instantid: Zero-shot identity- preserving generation in seconds. arXiv preprint arXiv:2401.07519, 2024. 14
2024 arXiv
-
[95]
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
2024 arXiv
-
[96]
VILA-u: a unified foundation model integrating visual understanding and generation
Yecheng Wu, Zhuoyang Zhang, Junyu Chen, Haotian Tang, Dacheng Li, Yunhao Fang, Ligeng Zhu, Enze Xie, Hongxu Yin, Li Yi, Song Han, and Yao Lu. VILA-u: a unified foundation model integrating visual understanding and generation. In The Thirteenth International Conference on Learn...
2025
-
[97]
Infinite-id: Identity-preserved person- alization via id-semantics decoupling paradigm
Yi Wu, Ziqiang Li, Heliang Zheng, Chaoyue Wang, and Bin Li. Infinite-id: Identity-preserved person- alization via id-semantics decoupling paradigm. In European Conference on Computer Vision, pages 279–296. Springer, 2024
2024
-
[98]
Omnigen: Unified image generation
Shitao Xiao, Yueze Wang, Junjie Zhou, Huaying Yuan, Xingrun Xing, Ruiran Yan, Chaofan Li, Shuting Wang, Tiejun Huang, and Zheng Liu. Omnigen: Unified image generation. arXiv preprint arXiv:2409.11340, 2024
2024 arXiv
-
[99]
SANA: Efficient high-resolution text-to-image synthesis with linear diffusion transformers
Enze Xie, Junsong Chen, Junyu Chen, Han Cai, Haotian Tang, Yujun Lin, Zhekai Zhang, Muyang Li, Ligeng Zhu, Yao Lu, and Song Han. SANA: Efficient high-resolution text-to-image synthesis with linear diffusion transformers. In The Thirteenth International Conference on Learning R...
2025
-
[100]
Show-o: One single transformer to unify multimodal understanding and generation
Jinheng Xie, Weijia Mao, Zechen Bai, David Junhao Zhang, Weihao Wang, Kevin Qinghong Lin, Yuchao Gu, Zhijie Chen, Zhenheng Yang, and Mike Zheng Shou. Show-o: One single transformer to unify multimodal understanding and generation. In The Thirteenth International Conference on ...
2025
-
[101]
Holistically-nested edge detection
Saining Xie and Zhuowen Tu. Holistically-nested edge detection. InProceedings of the IEEE international conference on computer vision, pages 1395–1403, 2015
2015
-
[102]
What matters when repurposing diffusion models for general dense perception tasks? In The Thirteenth International Conference on Learning Representations, 2025
Guangkai Xu, Yongtao Ge, Mingyu Liu, Chengxiang Fan, Kangyang Xie, Zhiyue Zhao, Hao Chen, and Chunhua Shen. What matters when repurposing diffusion models for general dense perception tasks? In The Thirteenth International Conference on Learning Representations, 2025
2025
-
[103]
Open- vocabulary panoptic segmentation with text-to-image diffusion models
Jiarui Xu, Sifei Liu, Arash Vahdat, Wonmin Byeon, Xiaolong Wang, and Shalini De Mello. Open- vocabulary panoptic segmentation with text-to-image diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 2955–2966, 2023
2023
-
[104]
CtrloRA: An extensible and efficient framework for controllable image generation
Yifeng Xu, Zhenliang He, Shiguang Shan, and Xilin Chen. CtrloRA: An extensible and efficient framework for controllable image generation. In The Thirteenth International Conference on Learning Representations, 2025
2025
-
[105]
Depth anything v2
Lihe Yang, Bingyi Kang, Zilong Huang, Zhen Zhao, Xiaogang Xu, Jiashi Feng, and Hengshuang Zhao. Depth anything v2. Advances in Neural Information Processing Systems, 37:21875–21911, 2024
2024
-
[106]
Stablenormal: Reducing diffusion variance for stable and sharp normal
Chongjie Ye, Lingteng Qiu, Xiaodong Gu, Qi Zuo, Yushuang Wu, Zilong Dong, Liefeng Bo, Yuliang Xiu, and Xiaoguang Han. Stablenormal: Reducing diffusion variance for stable and sharp normal. ACM Transactions on Graphics (TOG), 43(6):1–18, 2024
2024
-
[107]
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, 2023
2023 arXiv
-
[108]
Diffusionedge: Diffusion proba- bilistic model for crisp edge detection
Yunfan Ye, Kai Xu, Yuhang Huang, Renjiao Yi, and Zhiping Cai. Diffusionedge: Diffusion proba- bilistic model for crisp edge detection. In Proceedings of the AAAI conference on artificial intelligence, volume 38, pages 6675–6683, 2024
2024
-
[109]
Rgbx: Image decomposition and synthesis using material- and lighting-aware diffusion models
Zheng Zeng, Valentin Deschaintre, Iliyan Georgiev, Yannick Hold-Geoffroy, Yiwei Hu, Fujun Luan, Ling- Qi Yan, and Miloš Hašan. Rgbx: Image decomposition and synthesis using material- and lighting-aware diffusion models. In ACM SIGGRAPH 2024 Conference Papers, SIGGRAPH ’24, New...
2024
-
[110]
Diffusion-4k: Ultra-high-resolution image synthesis with latent diffusion models
Jinjin Zhang, Qiuyu Huang, Junjie Liu, Xiefan Guo, and Di Huang. Diffusion-4k: Ultra-high-resolution image synthesis with latent diffusion models. In IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), 2025
2025
-
[111]
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. 15
2023
-
[112]
The unreasonable effectiveness of deep features as a perceptual metric
Richard Zhang, Phillip Isola, Alexei A Efros, Eli Shechtman, and Oliver Wang. The unreasonable effectiveness of deep features as a perceptual metric. InProceedings of the IEEE conference on computer vision and pattern recognition, pages 586–595, 2018
2018
-
[113]
Easycontrol: Adding efficient and flexible control for diffusion transformer
Yuxuan Zhang, Yirui Yuan, Yiren Song, Haofan Wang, and Jiaming Liu. Easycontrol: Adding efficient and flexible control for diffusion transformer. arXiv preprint arXiv:2503.07027, 2025
2025 arXiv
-
[114]
Diception: A generalist diffusion model for visual perceptual tasks
Canyu Zhao, Mingyu Liu, Huanyi Zheng, Muzhi Zhu, Zhiyue Zhao, Hao Chen, Tong He, and Chunhua Shen. Diception: A generalist diffusion model for visual perceptual tasks. arXiv preprint arXiv:2502.17157, 2025
2025
-
[115]
Uni-controlnet: All-in-one control to text-to-image diffusion models
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 Systems, 36, 2024
2024
-
[116]
Unleashing text-to-image diffusion models for visual perception
Wenliang Zhao, Yongming Rao, Zuyan Liu, Benlin Liu, Jie Zhou, and Jiwen Lu. Unleashing text-to-image diffusion models for visual perception. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 5729–5739, 2023
2023
-
[117]
Scene parsing through ade20k dataset
Bolei Zhou, Hang Zhao, Xavier Puig, Sanja Fidler, Adela Barriuso, and Antonio Torralba. Scene parsing through ade20k dataset. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 633–641, 2017
2017
-
[118]
Transfusion: Predict the next token and diffuse images with one multi-modal model
Chunting Zhou, LILI YU, Arun Babu, Kushal Tirumala, Michihiro Yasunaga, Leonid Shamis, Jacob Kahn, Xuezhe Ma, Luke Zettlemoyer, and Omer Levy. Transfusion: Predict the next token and diffuse images with one multi-modal model. In The Thirteenth International Conference on Learn...
2025
-
[119]
Unleashing the potential of the diffusion model in few-shot semantic segmentation
Muzhi Zhu, Yang Liu, Zekai Luo, Chenchen Jing, Hao Chen, Guangkai Xu, Xinlong Wang, and Chunhua Shen. Unleashing the potential of the diffusion model in few-shot semantic segmentation. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024
2024
-
[120]
𝐲!# 𝐲"# 𝐲
Le Zhuo, Ruoyi Du, Han Xiao, Yangguang Li, Dongyang Liu, Rongjie Huang, Wenze Liu, Xiangyang Zhu, Fu-Yun Wang, Zhanyu Ma, Xu Luo, Zehan Wang, Kaipeng Zhang, Lirui Zhao, Si Liu, Xiangyu Yue, Wanli Ouyang, Yu Qiao, Hongsheng Li, and Peng Gao. Lumina-next : Making lumina-t2x stro...
2024
-
[2024]
Association for Computing Machinery
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.