REVIEW 4 major objections 6 minor 63 references
Text Embedding Knows How to Quantize Text-Guided Diffusion Models
T0 review · 4 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read The paper claims that text prompt embeddings can predict how much quantization a diffusion model tolerates, enabling per-layer, per-timestep bit precision selection that cuts cost without hurting image quality.
desk verdict Clean, well-motivated quantization wrapper with plausible gains, but the missing no-text control means the headline 'text guides bits' claim is under-supported. 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 a two-stage mapping from text to bits. A text-to-quality (T2Q) module, a three-layer MLP on top of the CLIP text embedding, predicts the score $q = \phi(z)$ that a full-precision generated image would receive under the GIQA quality metric. A quality-to-bit (Q2B) module then forms selection probabilities $p_{\text{low}}, p_{\text{med}}, p_{\text{high}}$ from $q$ and from learnable per-time-step parameters, takes the argmax as the bit width for each layer, and makes the discrete choice differentiable with a straight-through estimator so that Q2B can be trained to minimize both the output error against the full-precision denoiser and a bit-cost regularizer.
What would settle it
Measure the Spearman correlation between the frozen T2Q predictions and actual GIQA scores on images generated by BK-SDM or SDXL from Conceptual Captions prompts; if that correlation is much below the 0.8047 reported for Stable Diffusion v1.4 on COCO, the prompt-to-quality signal no longer supports QLIP's bit allocation and the reported FAB and FID gains should not transfer.
Extended reading notes
Core claim
The central claim is that the image quality a text-guided diffusion model will produce is predictable from the prompt's CLIP text embedding, and this prediction is enough to choose where bits should be spent during quantization. QLIP implements this with a frozen text-to-quality (T2Q) module that maps the embedding to a normalized quality score, and a trained quality-to-bit (Q2B) module that converts the score plus learnable time-step parameters into per-layer, per-timestep bit selections among three precisions. The paper reports that applying QLIP to Q-diffusion and PTQD reduces feature average bit width (for example from 16 to 12.14 on BK-SDM-Tiny-2M and from 8 to 7.86 on Stable Diffusion v1.4) while matching or improving FID and sFID, and that the benefit persists on SDXL and on the mixed-precision baseline PCR.
Load-bearing premise
The paper's load-bearing premise is that one frozen text-to-quality predictor, trained only on Stable Diffusion v1.4 images generated from COCO captions, continues to predict image quality accurately enough to assign bit widths for other diffusion models and other caption sources.
Editorial extensions
If this is right
- Adding QLIP to Q-diffusion or PTQD lowers average activation bit width by roughly a quarter with FID and sFID maintained or improved.
- Detailed prompts automatically cost more compute than terse prompts, because high predicted quality routes high and medium bits to most layers and time steps.
- The quality signal transfers beyond its training setup: QLIP reduces FAB on SDXL and on the FLUX-based mixed-precision baseline PCR.
- Bit savings concentrate in cross-attention layers (proj in, at2.to v, proj out), so those blocks are the main low-bit candidates.
Reading between the lines
- The paper never re-measures text-to-quality accuracy after transfer; checking SROCC on SDXL and BK-SDM with Conceptual Captions would show whether the frozen predictor truly generalizes.
- If prompt-to-quality mapping drives the gain, cheaper input features such as caption length or a small reward model could substitute for the trained T2Q; the paper's ablations already show predicted quality beats prompt length and image complexity.
- Because bit width is taken as the maximum across a batch, QLIP's savings shrink as batch size grows, pointing to per-request or small-batch deployment as the practical setting.
- A natural extension would let the same quality signal also choose the number of denoising steps or the sampler, making the entire sampling budget prompt-adaptive rather than only the bit widths.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes QLIP, a post-training quantization method for text-guided diffusion models that selects per-layer, per-time-step activation bit precisions using the input text prompt. QLIP consists of two modules: a Text-to-Quality (T2Q) module, a three-layer MLP trained with Eq. (3) to predict the GIQA score of full-precision generated images from the CLIP text embedding, and a Quality-to-Bit (Q2B) module, which turns the predicted quality q into bit-selection probabilities via Eqs. (4)-(6) and a straight-through estimator (Eq. (8)). The Q2B module is trained with the loss in Eq. (9), combining quantization error with a bit-length penalty. The method is integrated into Q-diffusion and PTQD and evaluated on BK-SDM-Tiny-2M, Stable Diffusion v1.4, and SDXL on COCO2017 and Conceptual Captions, with additional results on FLUX with PCR in the supplementary. The main reported findings are reductions in average bit width (FAB) and BitOPs while maintaining or improving FID/sFID relative to fixed-bit baselines, plus runtime and ablation studies.
Significance. If the central claim holds, text-derived quality is a novel and transferable signal for cost-effective dynamic quantization of diffusion models, and the paper would be a useful contribution to efficient text-to-image generation. The manuscript has several strengths: the pipeline is clearly specified; the code repository is provided; the experiments span multiple base models (BK-SDM-Tiny-2M, SD v1.4, SDXL) and datasets; the supplementary includes a comparison with a recent mixed-precision method (PCR) on FLUX; and the runtime and memory overhead of the added modules are measured. The motivating observation in Figure 2, that quantization sensitivity correlates with full-precision image quality, is interesting and well illustrated. However, the causal role of the text embedding is not yet isolated, and the transfer validity of the T2Q module to models and datasets outside its training distribution is unmeasured. These gaps are central to the paper's headline claim and need to be addressed before the results can be fully trusted.
major comments (4)
- [Section 3.4, Eq. (5) and Tables 1-2, S1-S2] The paper does not include a no-text control, so the central claim that text prompts guide bit precision is not isolated. In Eq. (5), u_t_m and u_t_h are prompt-independent learnable parameters that alone define a per-layer, per-time-step mixed-precision policy, while pq in Eq. (4) is the only text-dependent term. All comparisons in Tables 1, 2, S1, and S2 are against fixed-bit baselines (Q-diffusion W4A16/W4A8, PTQD, PCR), not against a static or learned mixed-precision policy with pq removed. Table 5 ablates pq only in combination with pt_m/pt_h, and Table S3 compares alternative input signals (image complexity, prompt length) but not a text-free Q2B. The reported FAB reductions and FID improvements could therefore be entirely due to the learned time/layer bit allocation, which is not new (PTQD and TDQ already exploit time-step sensitivity, and per-layer mixed precision is standard in quantization literature). Please add an ablation that replaces pq with a constant (or removes the text branch) while keeping the Q2B training procedure and bit options otherwise identical.
- [Section 4.1 and Table 4] The T2Q module is trained on 10k COCO2017 captions with Stable Diffusion v1.4, and its predictive accuracy is measured only on the same model and dataset (SROCC 0.8047 in Table 4). The frozen T2Q is then deployed on BK-SDM-Tiny-2M, SDXL, and Conceptual Captions without reporting per-model or per-dataset T2Q accuracy. If the text-to-quality correlation weakens on these targets, QLIP would systematically misallocate bits, undercutting the reported gains. Please report SROCC/PLCC of the frozen T2Q on each target model/dataset, or alternatively provide an analysis that groups evaluation prompts by predicted quality and shows that the bit-allocation pattern remains sensible (e.g., FID per quality bin).
- [Tables 1, 2, S1, S2] All quantitative comparisons lack error bars, confidence intervals, or significance tests. Several claimed 'maintained' or 'improved' results are within typical sampling noise: for example, in Table 1 (COCO2017), Q-diffusion FID is 30.02 and +QLIP is 30.01, and sFID is 73.25 vs. 73.24; in Table 2 (Conceptual Captions), the FID improvement of 20.74 to 19.89 is reported without variance. Please run multiple seeds or multiple generation sets for at least the headline comparisons (Tables 1 and 2) and report mean and standard deviation, or otherwise justify that the observed differences are significant.
- [Section 3.1 and Section B (supplementary)] The paper states in Section 3.1 that 'To our knowledge, all previous diffusion quantization methods set the same bit precision to all layers,' but the supplementary (Section B) compares against PCR [54], which is described there as 'a recent mixed-precision quantization method.' This is internally inconsistent: if PCR already performs per-layer mixed-precision quantization, the novelty claim in Section 3.1 is too strong and should be revised. Please clarify whether PCR assigns different bit precisions across layers and, if so, reposition QLIP's contribution accordingly (e.g., as text-conditional per-layer mixed precision rather than the first per-layer mixed-precision method).
minor comments (6)
- [Section 3.1, Eq. (1)] There is a typo in Eq. (1): 'parameteres' should be 'parameters'.
- [Section 4.1, Hyperparameter settings] The hyperparameters m (number of initial high-bit time steps) and the PTQD noise-correction thresholds 0.3/0.7 are hand-set and not ablated or justified. Figure 4 ablates only lambda_bit and M. Please add a sensitivity study or at least a brief explanation for these choices.
- [Table S3] The prompt-length baseline in Table S3 is a simple heuristic and not a trained alternative, and the image-complexity baseline changes the input signal but keeps the Q2B architecture. For a fair comparison, use a trained text-free Q2B with the same bit options and training budget, which would also serve as the no-text control requested in the major comments.
- [Section 4.2, Table 3] The runtime measurement in Table 3 does not describe how mixed-precision per-layer execution is realized with Cutlass, nor whether the reported times include per-layer kernel-launch overhead or the cost of the T2Q/Q2B modules in a batched setting. Please clarify the measurement protocol.
- [Tables 1 and 2] The bit-option sets differ across experiments: W4A{8,16,32} in Table 1 and W4A{6,8,10} in Table 2. Table S4 provides some analysis, but only for one setting. Please justify the choice of bit options per model or report results for a common set.
- [Section 4.4, Table 5] The Q2B ablations report FAB and FID separately without discussing the trade-off at matched operating points. For instance, '+pq+pt_h' achieves FAB 6.73 but FID 29.37, which is worse than the Q-diffusion W4A8 baseline (FID 23.40). Please analyze the results at comparable FAB or comparable FID levels.
Circularity Check
No significant circularity: QLIP's bit allocation is learned from quantization error plus a bit penalty, and its text-quality predictor is trained on full-precision GIQA targets, so the reported FID/FAB gains are not forced by construction.
full rationale
The central claim is an empirical training pipeline, not a derivation that reduces to its inputs. The T2Q module is trained with Eq. (3), where the targets are GIQA scores of images generated by the full-precision diffusion model; these targets are independent of the quantized metrics (FID/sFID) reported later. The Q2B module is trained with Eq. (9), which combines the full-precision-versus-quantized prediction error with an explicit bit-length penalty, and the final bit precision in Eq. (7) is an argmax over learned probabilities that are optimized rather than fitted to the reported FID. The main comparisons (Tables 1, 2, S1, S2) are against fixed-bit and existing mixed-precision baselines on external validation sets, and the evaluation metrics FID, sFID, and CLIP Score are external to the training objectives. The self-citation to RefQSR [25] appears only as a related-work example of image-adaptive quantization and as one of two sources for the BitOPs metric; it is not load-bearing, and no uniqueness theorem or ansatz is imported from it. The absence of a text-free Q2B control is a genuine experimental-isolation concern: the observed bit savings could in principle be driven largely by the learned per-layer, per-time-step offsets u_t_m and u_t_h rather than by the text-dependent quality signal. However, that is an experimental gap, not circularity, because no equation in the paper is equivalent to its own inputs by construction and no reported quantity is a renamed fitted parameter.
Assumptions & free parameters
free parameters (4)
- lambda_bit =
1
- M (time-step grouping) =
200
- m (initial high-bit time steps) =
not reported
- PTQD noise-correction thresholds =
0.3 and 0.7
assumptions (6)
- domain assumption Image quality of the generated image is predictable from the CLIP text embedding.
- domain assumption Low-bit quantization is acceptable when the full-precision output would be low quality; high bits are needed when output quality is high.
- domain assumption Activation distributions vary across time steps and layers but are similar for adjacent time steps, allowing parameter sharing every M steps.
- domain assumption The initial stage of reverse denoising needs high bits to maintain text-image correlation.
- domain assumption Weights are less sensitive to quantization than activations for diffusion models.
- standard math Straight-through estimator gives usable gradients for the non-differentiable bit-selection argmax.
Cite this review
Pith. "Pith review of Text Embedding Knows How to Quantize Text-Guided Diffusion Models." pith.science (2026). https://pith.science/paper/C6HIKF6S
@misc{pith2026250710340,
author = {Pith},
title = {Pith review of: Text Embedding Knows How to Quantize Text-Guided Diffusion Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/C6HIKF6S}},
note = {Machine review of arXiv:2507.10340}
}
read the original abstract
Despite the success of diffusion models in image generation tasks such as text-to-image, the enormous computational complexity of diffusion models limits their use in resource-constrained environments. To address this, network quantization has emerged as a promising solution for designing efficient diffusion models. However, existing diffusion model quantization methods do not consider input conditions, such as text prompts, as an essential source of information for quantization. In this paper, we propose a novel quantization method dubbed Quantization of Language-to-Image diffusion models using text Prompts (QLIP). QLIP leverages text prompts to guide the selection of bit precision for every layer at each time step. In addition, QLIP can be seamlessly integrated into existing quantization methods to enhance quantization efficiency. Our extensive experiments demonstrate the effectiveness of QLIP in reducing computational complexity and improving the quality of the generated images across various datasets.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[54]
Siao Tang, Xin Wang, Hong Chen, Chaoyu Guan, Zewen Wu, Yansong Tang, and Wenwu Zhu. Post-training quan- tization with progressive calibration and activation relaxing for text-to-image diffusion models. In Proceedings of the European Conference on Computer Vision, pages 404–420,
-
[1]
FLUX: huggingface.co/black-forest-labs/flux.1-dev. 1
-
[2]
GPT Image 1 API: https://platform.openai.com/docs/models/gpt- image-1. 3
-
[3]
eDiff-I: Text-to-image diffusion models with ensemble of expert denoisers
Yogesh Balaji, Seungjun Nah, Xun Huang, Arash Vahdat, Jiaming Song, Qinsheng Zhang, Karsten Kreis, Miika Ait- tala, Timo Aila, Samuli Laine, et al. eDiff-I: Text-to-image diffusion models with ensemble of expert denoisers. arXiv preprint arXiv:2211.01324, 2022. 5
arXiv 2022
-
[4]
Fan Bao, Chongxuan Li, Jun Zhu, and Bo Zhang. Analytic- DPM: An analytic estimate of the optimal reverse variance in diffusion probabilistic models. In Proceedings of the In- ternational Conference on Learning Representations , 2022. 1
work page 2022
-
[5]
Estimating or propagating gradients through stochastic neurons for conditional computation
Yoshua Bengio, Nicholas L ´eonard, and Aaron Courville. Estimating or propagating gradients through stochastic neurons for conditional computation. arXiv preprint arXiv:1308.3432, 2013. 5
arXiv 2013
-
[6]
Improving image generation with better captions
James Betker, Gabriel Goh, Li Jing, Tim Brooks, Jianfeng Wang, Linjie Li, Long Ouyang, Juntang Zhuang, Joyce Lee, Yufei Guo, et al. Improving image generation with better captions. Computer Science. https://cdn. openai. com/papers/dall-e-3. pdf, 2023. 1
work page 2023
-
[7]
PACT: Parameterized clipping acti- vation for quantized neural networks
Jungwook Choi, Zhuo Wang, Swagath Venkataramani, Pierce I-Jen Chuang, Vijayalakshmi Srinivasan, and Kailash Gopalakrishnan. PACT: Parameterized clipping acti- vation for quantized neural networks. arXiv preprint arXiv:1805.06085, 2018. 2
arXiv 2018
Show all 63 references
-
[8]
Perception pri- oritized training of diffusion models
Jooyoung Choi, Jungbeom Lee, Chaehun Shin, Sungwon Kim, Hyunwoo Kim, and Sungroh Yoon. Perception pri- oritized training of diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 11472–11481, 2022. 5
2022
-
[9]
QNCD: Quantization noise correction for diffusion models
Huanpeng Chu, Wei Wu, Chengjie Zang, and Kun Yuan. QNCD: Quantization noise correction for diffusion models. arXiv preprint arXiv:2403.19140, 2024. 2
2024 arXiv
-
[10]
Mix- Path: A unified approach for one-shot neural architecture search
Xiangxiang Chu, Shun Lu, Xudong Li, and Bo Zhang. Mix- Path: A unified approach for one-shot neural architecture search. In Proceedings of the IEEE/CVF International Con- ference on Computer Vision, pages 5972–5981, 2023. 1
2023
-
[11]
HAWQ: Hessian aware quantiza- tion of neural networks with mixed-precision
Zhen Dong, Zhewei Yao, Amir Gholami, Michael W Ma- honey, and Kurt Keutzer. HAWQ: Hessian aware quantiza- tion of neural networks with mixed-precision. In Proceed- ings of the IEEE/CVF International Conference on Com- puter Vision, pages 293–302, 2019. 1, 3
2019
-
[12]
Generative adversarial nets
Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Proceedings of the Advances in Neural Information Processing Systems , pages 2672–2680, 2014. 1
2014
-
[13]
GIQA: Generated image quality assessment
Shuyang Gu, Jianmin Bao, Dong Chen, and Fang Wen. GIQA: Generated image quality assessment. In Proceedings of the European Conference on Computer Vision, pages 369– 385, 2020. 3, 4, 8
2020
-
[14]
Learning both weights and connections for efficient neural network
Song Han, Jeff Pool, John Tran, and William Dally. Learning both weights and connections for efficient neural network. In Proceedings of the Advances in Neural Information Process- ing Systems, pages 1135—-1143, 2015. 1
2015
-
[15]
PTQD: Accurate post-training quantization for diffusion models
Yefei He, Luping Liu, Jing Liu, Weijia Wu, Hong Zhou, and Bohan Zhuang. PTQD: Accurate post-training quantization for diffusion models. InProceedings of the Advances in Neu- ral Information Processing Systems , pages 13237–13249,
-
[16]
CLIPScore: A reference-free evaluation metric for image captioning
Jack Hessel, Ari Holtzman, Maxwell Forbes, Ronan Le Bras, and Yejin Choi. CLIPScore: A reference-free evaluation metric for image captioning. In Proceedings of the 2021 Conference on Empirical Methods in Natural Language Pro- cessing, pages 7514–7528, 2021. 5
2021
-
[17]
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. In Proceedings of the Advances in Neural Information Processing Systems, pages 6629—-6640, 2017. 5
2017
-
[18]
Denoising diffu- sion probabilistic models
Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffu- sion probabilistic models. In Proceedings of the Advances in Neural Information Processing Systems , pages 6840–6851,
-
[19]
AdaBM: On-the-fly adaptive bit mapping for image super-resolution
Cheeun Hong and Kyoung Mu Lee. AdaBM: On-the-fly adaptive bit mapping for image super-resolution. InProceed- ings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 2641–2650, 2024. 1, 3, 6
2024
-
[20]
CADyQ: Content-aware dynamic quantization for image super-resolution
Cheeun Hong, Sungyong Baik, Heewon Kim, Seungjun Nah, and Kyoung Mu Lee. CADyQ: Content-aware dynamic quantization for image super-resolution. In Proceedings of the European Conference on Computer Vision , pages 367– 383, 2022. 1, 2, 3, 6
2022
-
[21]
BK-SDM: A lightweight, fast, and cheap version of stable diffusion
Bo-Kyeong Kim, Hyoung-Kyu Song, Thibault Castells, and Shinkook Choi. BK-SDM: A lightweight, fast, and cheap version of stable diffusion. In Proceedings of the European Conference on Computer Vision, 2024. 2, 5, 6
2024
-
[22]
Adam: A method for stochastic optimization
Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In Proceedings of the International Conference on Learning Representations, 2015. 5
2015
-
[23]
Pick-a-Pic: An open dataset of user preferences for text-to-image generation
Yuval Kirstain, Adam Polyak, Uriel Singer, Shahbuland Ma- tiana, Joe Penna, and Omer Levy. Pick-a-Pic: An open dataset of user preferences for text-to-image generation. In Proceedings of the Advances in Neural Information Process- ing Systems Workshop, 2023. 1
2023
-
[24]
Improved precision and recall met- ric for assessing generative models
Tuomas Kynk ¨a¨anniemi, Tero Karras, Samuli Laine, Jaakko Lehtinen, and Timo Aila. Improved precision and recall met- ric for assessing generative models. In Proceedings of the Advances in Neural Information Processing Systems , pages 3927—-3936, 2019. 8
2019
-
[25]
RefQSR: Reference-based quantization for image super-resolution networks
Hongjae Lee, Jun-Sang Yoo, and Seung-Won Jung. RefQSR: Reference-based quantization for image super-resolution networks. IEEE Transactions on Image Processing , 33: 2823–2834, 2024. 1, 3, 5
2024
-
[26]
Auto- mated knowledge distillation via monte carlo tree search
Lujun Li, Peijie Dong, Zimian Wei, and Ya Yang. Auto- mated knowledge distillation via monte carlo tree search. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 17413–17424, 2023. 1
2023
-
[27]
9 Q-diffusion: Quantizing diffusion models
Xiuyu Li, Yijiang Liu, Long Lian, Huanrui Yang, Zhen Dong, Daniel Kang, Shanghang Zhang, and Kurt Keutzer. 9 Q-diffusion: Quantizing diffusion models. In Proceedings of the IEEE/CVF International Conference on Computer Vi- sion, pages 17535–17545, 2023. 1, 2, 3, 5, 6, 8
2023
-
[28]
BRECQ: Push- ing the limit of post-training quantization by block recon- struction
Yuhang Li, Ruihao Gong, Xu Tan, Yang Yang, Peng Hu, Qi Zhang, Fengwei Yu, Wei Wang, and Shi Gu. BRECQ: Push- ing the limit of post-training quantization by block recon- struction. In Proceedings of the International Conference on Learning Representations, 2021. 1, 5
2021
-
[29]
Snap- Fusion: Text-to-image diffusion model on mobile devices within two seconds
Yanyu Li, Huan Wang, Qing Jin, Ju Hu, Pavlo Chemerys, Yun Fu, Yanzhi Wang, Sergey Tulyakov, and Jian Ren. Snap- Fusion: Text-to-image diffusion model on mobile devices within two seconds. In Proceedings of the Advances in Neu- ral Information Processing Systems , pages 20662–20678,
-
[30]
Microsoft COCO: Common objects in context
Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Doll´ar, and C Lawrence Zitnick. Microsoft COCO: Common objects in context. In Proceedings of the European Conference on Computer Vi- sion, pages 740–755, 2014. 3, 5, 6
2014
-
[31]
Progressive neural architecture search
Chenxi Liu, Barret Zoph, Maxim Neumann, Jonathon Shlens, Wei Hua, Li-Jia Li, Li Fei-Fei, Alan Yuille, Jonathan Huang, and Kevin Murphy. Progressive neural architecture search. In Proceedings of the European Conference on Com- puter Vision, pages 19–34, 2018. 1
2018
-
[32]
Pseudo nu- merical methods for diffusion models on manifolds
Luping Liu, Yi Ren, Zhijie Lin, and Zhou Zhao. Pseudo nu- merical methods for diffusion models on manifolds. In Pro- ceedings of the International Conference on Learning Rep- resentations, 2022. 1
2022
-
[33]
Instance-aware dynamic neural network quantization
Zhenhua Liu, Yunhe Wang, Kai Han, Siwei Ma, and Wen Gao. Instance-aware dynamic neural network quantization. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 12434–12443, 2022. 1, 3
2022
-
[34]
DPM-Solver: A fast ODE solver for dif- fusion probabilistic model sampling in around 10 steps
Cheng Lu, Yuhao Zhou, Fan Bao, Jianfei Chen, Chongxuan Li, and Jun Zhu. DPM-Solver: A fast ODE solver for dif- fusion probabilistic model sampling in around 10 steps. In Proceedings of the Advances in Neural Information Process- ing Systems, pages 5775–5787, 2022. 1
2022
-
[35]
On distillation of guided diffusion models
Chenlin Meng, Robin Rombach, Ruiqi Gao, Diederik Kingma, Stefano Ermon, Jonathan Ho, and Tim Salimans. On distillation of guided diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pat- tern Recognition, pages 14297–14306, 2023. 2
2023
-
[36]
Improved denoising diffusion probabilistic models
Alexander Quinn Nichol and Prafulla Dhariwal. Improved denoising diffusion probabilistic models. In Proceedings of the International Conference on Machine Learning , pages 8162–8171, 2021. 2
2021
-
[37]
CUTLASS, 2025
NVIDIA. CUTLASS, 2025. https://github.com/ NVIDIA/cutlass. 7
2025
-
[38]
Softmax bias correction for quantized generative models
Nilesh Prasad Pandey, Marios Fournarakis, Chirag Patel, and Markus Nagel. Softmax bias correction for quantized generative models. In Proceedings of the IEEE/CVF Inter- national Conference on Computer Vision Workshop , pages 1453–1458, 2023. 2
2023
-
[39]
Notes on regression and inheritance in the case of two parents
Karl Pearson. Notes on regression and inheritance in the case of two parents. Proceedings of the Royal Society of London, 58:240–242, 1895. 8
-
[40]
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. In Proceedings of the International Conference on Learning Representations ,
-
[41]
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 Proceedings of the International Conference ...
2021
-
[42]
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. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 10674–10685, 2022. 1, 2, 3, 5, 6
2022
-
[43]
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 Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 22500...
2023
-
[44]
Memory- efficient personalization using quantized diffusion model
Hyogon Ryu, Seohyun Lim, and Hyunjung Shim. Memory- efficient personalization using quantized diffusion model. In Proceedings of the European Conference on Computer Vi- sion, 2024. 2
2024
-
[45]
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. In Proceedings of the Ad- vanc...
2022
-
[46]
Progressive distillation for fast sampling of diffusion models
Tim Salimans and Jonathan Ho. Progressive distillation for fast sampling of diffusion models. In Proceedings of the In- ternational Conference on Learning Representations , 2022. 2
2022
-
[47]
Improved techniques for training gans
Tim Salimans, Ian Goodfellow, Wojciech Zaremba, Vicki Cheung, Alec Radford, Xi Chen, and Xi Chen. Improved techniques for training gans. In Proceedings of the Ad- vances in Neural Information Processing Systems , pages 2234––2242, 2016. 5
2016
-
[48]
Post-training quantization on diffusion models
Yuzhang Shang, Zhihang Yuan, Bin Xie, Bingzhe Wu, and Yan Yan. Post-training quantization on diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vi- sion and Pattern Recognition , pages 1972–1981, 2023. 1, 2
1972
-
[49]
Conceptual captions: A cleaned, hypernymed, im- age alt-text dataset for automatic image captioning
Piyush Sharma, Nan Ding, Sebastian Goodman, and Radu Soricut. Conceptual captions: A cleaned, hypernymed, im- age alt-text dataset for automatic image captioning. In Pro- ceedings of the 56th Annual Meeting of the Association for Computational Linguistics, pages 2556–2565, 2018. 5, 6
2018
-
[50]
Temporal dynamic quantization for dif- fusion models
Junhyuk So, Jungwon Lee, Daehyun Ahn, Hyungjun Kim, and Eunhyeok Park. Temporal dynamic quantization for dif- fusion models. In Proceedings of the Advances in Neural Information Processing Systems, pages 48686–48698, 2023. 1, 2, 3, 5 10
2023
-
[51]
Denois- ing diffusion implicit models
Jiaming Song, Chenlin Meng, and Stefano Ermon. Denois- ing diffusion implicit models. In Proceedings of the Inter- national Conference on Learning Representations, 2021. 1, 2
2021
-
[52]
The proof and measurement of associa- tion between two things
Charles Spearman. The proof and measurement of associa- tion between two things. The American Journal of Psychol- ogy, 15(1):72—-101, 1961. 8
1961
-
[53]
CHIP: Channel independence- based pruning for compact neural networks
Yang Sui, Miao Yin, Yi Xie, Huy Phan, Saman Aliari Zonouz, and Bo Yuan. CHIP: Channel independence- based pruning for compact neural networks. In Proceedings of the Advances in Neural Information Processing Systems , pages 24604–24616, 2021. 1
2021
-
[55]
Post-training quan- tization with progressive calibration and activation relaxing for text-to-image diffusion models
Siao Tang, Xin Wang, Hong Chen, Chaoyu Guan, Zewen Wu, Yansong Tang, and Wenwu Zhu. Post-training quan- tization with progressive calibration and activation relaxing for text-to-image diffusion models. In Proceedings of the European Conference on Computer Vision, 2024. 2, 3
2024
-
[56]
CABM: Content-aware bit map- ping for single image super-resolution network with large input
Senmao Tian, Ming Lu, Jiaming Liu, Yandong Guo, Yurong Chen, and Shunli Zhang. CABM: Content-aware bit map- ping for single image super-resolution network with large input. In Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition , pages 1756–1765,
-
[57]
Bayesian bits: Unifying quantization and pruning
Mart Van Baalen, Christos Louizos, Markus Nagel, Rana Ali Amjad, Ying Wang, Tijmen Blankevoort, and Max Welling. Bayesian bits: Unifying quantization and pruning. In Pro- ceedings of the Advances in Neural Information Processing Systems, pages 5741–5752, 2020. 5
2020
-
[58]
Ex- ploring clip for assessing the look and feel of images
Jianyi Wang, Kelvin CK Chan, and Chen Change Loy. Ex- ploring clip for assessing the look and feel of images. InPro- ceedings of the AAAI Conference on Artificial Intelligence , pages 2555–2563, 2023. 8
2023
-
[59]
HAQ: Hardware-aware automated quantization with mixed precision
Kuan Wang, Zhijian Liu, Yujun Lin, Ji Lin, and Song Han. HAQ: Hardware-aware automated quantization with mixed precision. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 8612– 8620, 2019. 1, 3
2019
-
[60]
ImageRe- ward: Learning and evaluating human preferences for text- to-image generation
Jiazheng Xu, Xiao Liu, Yuchen Wu, Yuxuan Tong, Qinkai Li, Ming Ding, Jie Tang, and Yuxiao Dong. ImageRe- ward: Learning and evaluating human preferences for text- to-image generation. In Proceedings of the Advances in Neu- ral Information Processing Systems Workshop, 2023. 1
2023
-
[61]
Online knowledge distillation via mutual contrastive learning for visual recog- nition
Chuanguang Yang, Zhulin An, Helong Zhou, Fuzhen Zhuang, Yongjun Xu, and Qian Zhang. Online knowledge distillation via mutual contrastive learning for visual recog- nition. IEEE Transactions on Pattern Analysis and Machine Intelligence, 45(8):10212–10227, 2023. 1
2023
-
[62]
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. 1
2023
-
[63]
proj in” which leverages the denoised image latent passed into the cross-attention block, (2) “at2.to v
Xuechen Zhang, Zheng Li, Samet Oymak, and Jiasi Chen. Text-to-3d generative ai on mobile devices: Measurements and optimizations. In Proceedings of the Workshop on Emerging Multimedia Systems, pages 8–14, 2023. 1 11 Text Embedding Knows How to Quantize Text-Guided Diffusion Mo...
2023
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.