REVIEW 2 major objections 5 minor 1 cited by
Whitened CLIP as a Likelihood Surrogate of Images and Captions
T0 review · 2 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read Whitening CLIP embeddings turns their squared norm into a direct log-likelihood estimate for images and captions.
desk verdict A useful and clearly-written heuristic for scoring CLIP embeddings, but the likelihood framing leans on an unvalidated joint-normality assumption that the paper's own norm statistics partially contradict. 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 carrying mechanism is PCA whitening: from a representative set of CLIP embeddings the paper builds the empirical covariance $\Sigma$, diagonalizes it as $\Sigma = V\Lambda V^\top$, and applies the invertible map $W = \Lambda^{-1/2}V^\top$ to centered embeddings, so $y = W(x-\mu)$ has zero mean and identity covariance. Under the paper's normality claim, this reduces the probability model to the standard normal density, making log-likelihood a function of the squared Euclidean norm. The companion object is the chi distribution of the norm, whose mean $\sqrt{d-\tfrac{1}{2}}$ drives the thin-shell intuition used to stabilize iterative generation and to explain why nearly all mass sits near a sphere of radius $\sqrt{d}$.
What would settle it
Take a held-out set of images never used to fit the whitening matrix, whiten their CLIP embeddings, and compare the empirical distribution of $\|y\|^2$ with the $\chi^2_d$ distribution predicted by Eq. (6). A large tail excess or a mean norm far from $\sqrt{d-\tfrac{1}{2}}$ would show the likelihood surrogate does not hold outside the fitting set.
Extended reading notes
Core claim
The paper's central claim is that the CLIP embedding distribution, treated separately for images and for text, is approximately elliptical and becomes approximately isotropic standard normal after the invertible whitening map $y = \Lambda^{-1/2}V^\top(x-\mu)$. Under that model the paper defines the log-likelihood surrogate $\ell(x) = -\frac{1}{2}(d\log(2\pi)+\|y\|^2)$ and identifies the norm $\|y\|$ with a chi distribution whose typical radius is $\sqrt{d-\tfrac{1}{2}}$. The authors state that to their knowledge this is the first direct computation of likelihood functions for images and text prompts under the CLIP-learned distribution; the experiments are presented as preliminary demonstrations of the properties and applications of these scores.
Load-bearing premise
The load-bearing premise is that the whitened embeddings are jointly standard normal, not merely coordinate-by-coordinate normal and uncorrelated; the paper's checks are per-feature and are run on the same validation set used to fit the whitening transform.
Editorial extensions
If this is right
- W-CLIP can rank real images above generated images with artifacts, giving a fast generated-image detector.
- Corrupted ImageNet-C images and stylized ImageNet-R renditions receive lower likelihoods than clean ImageNet, with severity moving the norm histogram further away from the in-distribution set.
- Iterative UnCLIP re-encoding drifts into noise, while normalizing each whitened embedding to radius $\sqrt{d}$ keeps outputs within the natural image space, exposing a likelihood bias of the generator.
- Full-circle SLERP in W-CLIP keeps interpolated and extrapolated images natural and semantically meaningful, whereas raw-CLIP full-circle SLERP collapses into structured noise for off-segment angles.
- Caption likelihoods decrease when captions become more specific or contain grammatical errors, and W-CLIP separates captions from general text more sharply than language-model likelihoods.
Reading between the lines
- Editorial: the same whitening-plus-norm recipe should transfer to other contrastive vision-language embeddings; the paper tests two CLIP variants, so a held-out norm-distribution check on another model would test the generality.
- Editorial: the thin-shell result implies a calibrated 'typical set' around radius $\sqrt{d}$; a threshold on normalized norm deviation might be more stable across datasets than raw likelihood.
- Editorial: because image and text whitening matrices are fit separately, W-CLIP likelihoods are not directly comparable across modalities; a cross-modal calibration step would be needed before using the score to compare an image with its caption.
- Editorial: the moderate correlation with language-model likelihoods (0.33-0.48) suggests W-CLIP carries complementary information, so a combined score could be more robust to text type and length than either measure alone.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Whitened CLIP (W-CLIP), an invertible linear transformation of CLIP image and text embeddings via PCA whitening. Under the assumption that the whitened embeddings are jointly standard normal, the log-likelihood of an embedding is approximated as -1/2(d log(2π) + ||y||^2) (Eq. 6). The authors validate per-feature normality with Anderson-Darling and D'Agostino-Pearson tests, argue that whitening yields i.i.d. features, and demonstrate applications including artifact detection, domain-shift ranking, generation-bias measurement, and full-circle SLERP interpolation. They also compare their text likelihood scores with language-model NLLs and perform cross-dataset and cross-CLIP-model ablations.
Significance. If the central normality assumption is justified, W-CLIP offers a fast, training-free, and invertible likelihood surrogate for CLIP latents, with a clean derivation and a wide range of downstream uses. The paper's strengths include a reproducible code release, a principled derivation from the Gaussian assumption to Eq. (6), cross-dataset (Flickr8k) and cross-model (ViT-B/32) ablations, and a clear set of falsifiable experimental probes (artifact detection, ImageNet-C/R shifts, generation bias). The probabilistic claim is, however, the load-bearing component: Eq. (6) is only a likelihood if the whitened embeddings are jointly standard normal. The current validation establishes, at most, approximate marginal Gaussianity and enforced decorrelation in-sample; it does not establish joint normality, and an omitted Jacobian term further muddies the interpretation as a likelihood of the original embeddings. These gaps are fixable with additional multivariate tests and a clarifying statement, so the paper merits a major revision rather than rejection.
major comments (2)
- [Sec. 3.3, Eq. (6)] The validation of the normal-distribution assumption is performed per feature on the same 5,000 MS-COCO validation embeddings used to compute the whitening matrix W. Since W is constructed to make the sample mean zero, the sample variance unity, and the sample covariance the identity on this same set, the covariance diagonality reported in Fig. 4(b) and the zero-mean/unit-variance claims in Fig. 4(d) are enforced by construction and do not constitute evidence about the population distribution. The Anderson-Darling and D'Agostino-Pearson tests are applied to individual coordinates and cannot detect non-Gaussian dependence among coordinates; the statement in Sec. 3.3 that 'in normal distribution, non-correlation is a sufficient condition for independence' assumes joint normality, which is precisely the property needing validation. As a result, the distribution of ||y||^2 need not be chi-squared, so Eq. (6) is not established as a log-likelihood. This is load-bearing because the entire probabilistic interpretation, the chi-distribution comparison in Tab. 2, and the use of the norm as a probability score depend on y being jointly N(0,I). The 13.24% relative deviation of the text norm standard deviation in Tab. 2 already signals a departure. Please add a direct test of joint normality or of the norm/chi-squared fit, and perform it on a held-out set with W computed on a separate training set (e.g., a 2k/3k split).
- [Sec. 3.4, Eq. (6)] Equation (6) is the log-density of the whitened vector y under a standard normal model, as Eq. (5) makes clear. If the paper claims to provide the likelihood of a raw CLIP embedding or of an image/caption, the invertible change of variables y = W(x - μ) introduces an additive log|det W| term that is missing. For a fixed W this constant cancels in relative comparisons, but it differs between the image and text whitening matrices, so the paper's image and text 'log-likelihood' scores are not directly comparable as likelihood values, and cross-modality comparisons (or any use in a setting with multiple W matrices) require the constant. Please state explicitly what random variable Eq. (6) describes and either include the Jacobian term or restrict the claims to within-space relative scores.
minor comments (5)
- [Sec. 3.3] The sentence 'in normal distribution, non-correlation is a sufficient condition for independence' is only valid under joint normality; please rephrase to avoid appearing to assume the very property being tested.
- [App. D.1, Alg. 1] The whitening procedure replaces highly correlated features with random noise r ~ N(0,0.1), and the correlation threshold τ is a free parameter. Please report the chosen τ and provide a sensitivity analysis; the current statement that the impact is minimal is not backed by quantitative evidence.
- [Tab. 3] Table 3 is difficult to parse because the column values for the two modalities are interleaved without clear separation. Please reformat so each row has explicit Data T, Data W, Avg. AD, Avg. DP, and Correlation columns, one row per modality.
- [Sec. 4.3] The text contains a typo: 'a dog with a bottle of bear' should read 'a dog with a bottle of beer'.
- [App. D.3, Eq. (12)] The Anderson-Darling formula is displayed with an awkward line break; please ensure the prefactor is typeset clearly as -n - (1/n) Σ ... so that the statistic is unambiguous.
Circularity Check
In-sample whitening makes part of the i.i.d. validation tautological, but cross-dataset and alternate-model checks keep the core claim from being fully circular.
-
self definitional
[Sec. 3.3, 'Whitened CLIP embeddings' (i.i.d. paragraph, Fig. 4)]
"While the CLIP embeddings exhibit correlations between features, the covariance matrix of the whitened embeddings is almost exactly diagonal, indicating that the features are uncorrelated. This is expected, since the whitening transform is designed for exactly this purpose."
By construction, W = Λ^(-1/2)V^T diagonalizes the empirical covariance of the same MS-COCO validation vectors used for Fig. 4, so the reported identity covariance and unit variances are not independent evidence; as the text admits, 'the whitening transform is designed for exactly this purpose.' The step then converts this forced uncorrelatedness into independence by invoking the claim that 'in normal distribution, non-correlation is a sufficient condition for independence,' which presupposes the joint normality that Eq. (6) needs and that the marginal Anderson-Darling and D'Agostino-Pearson tests do not establish. The load-bearing i.i.d. premise of Eqs. (5)-(6) is therefore partly a restatement of the whitening fit plus an assumed, rather than directly validated, joint Gaussianity.
-
fitted input called prediction
[Sec. 4 opening; Sec. 3.3, Tab. 1 and Tab. 2]
"All the experiments in this section employ the CLIP ViT-L/14 model and utilize the MS-COCO validation set to compute the whitening matrix W."
The normality statistics (Tab. 1), the covariance diagonality (Fig. 4), and the norm statistics (Tab. 2) are computed on the same 5,000 MS-COCO validation embeddings from which W is estimated. Since W is chosen to make this exact sample have zero mean and identity covariance, the covariance identity, the implied trace condition, and part of the 'i.i.d.' characterization of those same vectors are consequences of the fitting procedure rather than independent predictions. The paper partially mitigates this with cross-dataset (Flickr8k, Tab. 3) and alternate-backbone (ViT-B/32, Tab. 6) checks, but the in-sample validation used to justify Eq. (6) remains partly circular.
full rationale
The paper's Eq. (6) is not derived from data; it is a proposal that whitened CLIP embeddings are approximately N(0, I_d), making the negative log-likelihood a function of the squared norm. The central circularity risk is therefore not in Eq. (6) itself, but in the evidence used to justify the N(0, I_d) premise. Two aspects of that evidence reduce to construction: the whitening transform W is fit to the MS-COCO validation set, and the same set is then used to display identity covariance and near-unit variances, which W enforces by design; and the independence claim is obtained by invoking the normal-distribution fact that uncorrelatedness implies independence, which assumes the very joint normality that is never directly tested. Those steps are partly self-definitional. However, the paper does not end there: Tab. 3 tests normality and likelihood correlations using Flickr8k as the test set with a COCO-fitted W, Tab. 6 repeats with a different CLIP backbone, and the ImageNet-A/C/R experiments provide external behavioral checks independent of the fitted values. Those checks give Eq. (6) genuinely independent content, so the circularity is partial rather than total. The self-citation to Levi and Gilboa 2025 for the modality gap is accompanied by Liang et al. 2022 and is not load-bearing. Overall score 4: some validation claims reduce by construction, but the central likelihood surrogate has independent empirical support.
Assumptions & free parameters
free parameters (3)
- Whitening matrix W and mean vector μ =
768x768 matrix and 768-dim vector (ViT-L/14); not reported in paper
- Correlation threshold τ =
not reported
- Random noise for replaced features =
N(0, 0.1)
assumptions (4)
- domain assumption Whitened CLIP embeddings are jointly standard normal.
- standard math Non-correlation implies independence for the whitened features.
- domain assumption Image and text CLIP embeddings are disjoint and each can be modeled as a single Gaussian after whitening.
- domain assumption The empirical covariance of the validation set is non-singular and representative; for text, correlated features can be replaced with random noise without affecting results.
Cite this review
Pith. "Pith review of Whitened CLIP as a Likelihood Surrogate of Images and Captions." pith.science (2026). https://pith.science/paper/VXRE7C6V
@misc{pith2026250506934,
author = {Pith},
title = {Pith review of: Whitened CLIP as a Likelihood Surrogate of Images and Captions},
year = {2026},
howpublished = {\url{https://pith.science/paper/VXRE7C6V}},
note = {Machine review of arXiv:2505.06934}
}
read the original abstract
Likelihood approximations for images are not trivial to compute and can be useful in many applications. We examine the use of Contrastive Language-Image Pre-training (CLIP) to assess the likelihood of images and captions. We introduce \textit{Whitened CLIP}, a novel transformation of the CLIP latent space via an invertible linear operation. This transformation ensures that each feature in the embedding space has zero mean, unit standard deviation, and no correlation with all other features, resulting in an identity covariance matrix. We show that the whitened embeddings statistics can be well approximated as a standard normal distribution, thus, the log-likelihood is estimated simply by the square Euclidean norm in the whitened embedding space. The whitening procedure is completely training-free and performed using a pre-computed whitening matrix, hence, is very fast. We present several preliminary experiments demonstrating the properties and applicability of these likelihood scores to images and captions.
Figures
Figures from the paper (23 more)
Forward citations
Cited by 1 Pith paper
-
The Hyperspherical Geometry of CLIP Latent Space: A Semantic Mixture Model
CLIP embeddings are modeled as a mixture of von Mises-Fisher distributions on the unit sphere, improving out-of-distribution detection and semantic decomposition over single-Gaussian baselines.
Reference graph
Works this paper leans on
-
[1]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION format.date year duplicate empty "emp...
-
[2]
Anderson, T. W. and Darling, D. A. A test of goodness of fit. Journal of the American statistical association, 49 0 (268): 0 765--769, 1954
work page 1954
-
[3]
Bishop, C. M. and Nasrabadi, N. M. Pattern recognition and machine learning, volume 4. Springer, 2006
2006
-
[4]
Gpt-neo: Large scale autoregressive language modeling with mesh-tensorflow
Black, S., Gao, L., Wang, P., Leahy, C., and Biderman, S. Gpt-neo: Large scale autoregressive language modeling with mesh-tensorflow. If you use this software, please cite it using these metadata, 58 0 (2), 2021
work page 2021
-
[5]
D., Dhariwal, P., Neelakantan, A., Shyam, P., Sastry, G., Askell, A., et al
Brown, T., Mann, B., Ryder, N., Subbiah, M., Kaplan, J. D., Dhariwal, P., Neelakantan, A., Shyam, P., Sastry, G., Askell, A., et al. Language models are few-shot learners. Advances in neural information processing systems, 33: 0 1877--1901, 2020
1901
-
[6]
Synartifact: Classifying and alleviating artifacts in synthetic images via vision-language model
Cao, B., Yuan, J., Liu, Y., Li, J., Sun, S., Liu, J., and Zhao, B. Synartifact: Classifying and alleviating artifacts in synthetic images via vision-language model. arXiv preprint arXiv:2402.18068, 2024
arXiv 2024
-
[7]
Chou, J. C.-C. and Alam, N. Embedding geometries of contrastive language-image pre-training. arXiv preprint arXiv:2409.13079, 2024
arXiv 2024
-
[8]
D'agostino, R. and Pearson, E. S. Tests for departure from normality. empirical results for the distributions of b^2 and b . Biometrika, 60 0 (3): 0 613--622, 1973
work page 1973
Show all 54 references
-
[9]
Imagenet: A large-scale hierarchical image database
Deng, J., Dong, W., Socher, R., Li, L.-J., Li, K., and Fei-Fei, L. Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pp.\ 248--255. Ieee, 2009
2009
-
[10]
Desai, K., Nickel, M., Rajpurohit, T., Johnson, J., and Vedantam, S. R. Hyperbolic image-text representations. In International Conference on Machine Learning, pp.\ 7694--7731. PMLR, 2023
2023
-
[11]
Bert: Pre-training of deep bidirectional transformers for language understanding
Devlin, J. Bert: Pre-training of deep bidirectional transformers for language understanding. arXiv preprint arXiv:1810.04805, 2018
2018 arXiv
-
[12]
and Mordatch, I
Du, Y. and Mordatch, I. Implicit generation and modeling with energy based models. Advances in Neural Information Processing Systems, 32, 2019
2019
-
[13]
Image inpainting: A review
Elharrouss, O., Almaadeed, N., Al-Maadeed, S., and Akbari, Y. Image inpainting: A review. Neural Processing Letters, 51: 0 2007--2028, 2020
2007
-
[14]
Implicit diffusion models for continuous super-resolution
Gao, S., Liu, X., Zeng, B., Xu, S., Li, Y., Luo, X., Liu, J., Zhen, X., and Zhang, B. Implicit diffusion models for continuous super-resolution. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp.\ 10021--10030, 2023
2023
-
[15]
and Geman, D
Geman, S. and Geman, D. Stochastic relaxation, gibbs distributions, and the bayesian restoration of images. IEEE Transactions on pattern analysis and machine intelligence, 6: 0 721--741, 1984
1984
-
[16]
Openwebtext corpus
Gokaslan, A., Cohen, V., Pavlick, E., and Tellex, S. Openwebtext corpus. http://Skylion007.github.io/OpenWebTextCorpus, 2019
2019
-
[17]
Generative adversarial networks
Goodfellow, I., Pouget-Abadie, J., Mirza, M., Xu, B., Warde-Farley, D., Ozair, S., Courville, A., and Bengio, Y. Generative adversarial networks. Communications of the ACM, 63 0 (11): 0 139--144, 2020
2020
-
[18]
S., and Sharma, A
Goyal, B., Dogra, A., Agrawal, S., Sohi, B. S., and Sharma, A. Image denoising review: From classical to state-of-the-art approaches. Information fusion, 55: 0 220--244, 2020
2020
-
[19]
Groeneveld, R. A. and Meeden, G. Measuring skewness and kurtosis. Journal of the Royal Statistical Society Series D: The Statistician, 33 0 (4): 0 391--399, 1984
1984
-
[20]
and Dietterich, T
Hendrycks, D. and Dietterich, T. Benchmarking neural network robustness to common corruptions and perturbations. arXiv preprint arXiv:1903.12261, 2019
1903 arXiv
-
[21]
The many faces of robustness: A critical analysis of out-of-distribution generalization
Hendrycks, D., Basart, S., Mu, N., Kadavath, S., Wang, F., Dorundo, E., Desai, R., Zhu, T., Parajuli, S., Guo, M., et al. The many faces of robustness: A critical analysis of out-of-distribution generalization. In Proceedings of the IEEE/CVF international conference on compute...
2021
-
[22]
Natural adversarial examples
Hendrycks, D., Zhao, K., Basart, S., Steinhardt, J., and Song, D. Natural adversarial examples. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp.\ 15262--15271, 2021 b
2021
-
[23]
Hinton, G. E. and Salakhutdinov, R. R. Reducing the dimensionality of data with neural networks. science, 313 0 (5786): 0 504--507, 2006
2006
-
[24]
Denoising diffusion probabilistic models
Ho, J., Jain, A., and Abbeel, P. Denoising diffusion probabilistic models. Advances in neural information processing systems, 33: 0 6840--6851, 2020
2020
-
[25]
Framing image description as a ranking task: Data, models and evaluation metrics
Hodosh, M., Young, P., and Hockenmaier, J. Framing image description as a ranking task: Data, models and evaluation metrics. Journal of Artificial Intelligence Research, 47: 0 853--899, 2013
2013
-
[26]
Imagenet object localization challenge
Kan, W., Howard, A., and Park, E. Imagenet object localization challenge. In https://kaggle.com/competitions/imagenet-objectlocalization-challenge, 2018
2018
-
[27]
Imagic: Text-based real image editing with diffusion models
Kawar, B., Zada, S., Lang, O., Tov, O., Chang, H., Dekel, T., Mosseri, I., and Irani, M. Imagic: Text-based real image editing with diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp.\ 6007--6017, 2023
2023
-
[28]
Kingma, D. P. Auto-encoding variational bayes. arXiv preprint arXiv:1312.6114, 2013
2013 arXiv
-
[29]
Levi, M. Y. and Gilboa, G. The double-ellipsoid geometry of clip. In International Conference on Machine Learning. PMLR, 2025
2025
-
[30]
Same task, more tokens: the impact of input length on the reasoning performance of large language models
Levy, M., Jacoby, A., and Goldberg, Y. Same task, more tokens: the impact of input length on the reasoning performance of large language models. arXiv preprint arXiv:2402.14848, 2024
2024 arXiv
-
[31]
Srdiff: Single image super-resolution with diffusion probabilistic models
Li, H., Yang, Y., Chang, M., Chen, S., Feng, H., Xu, Z., Li, Q., and Chen, Y. Srdiff: Single image super-resolution with diffusion probabilistic models. Neurocomputing, 479: 0 47--59, 2022 a
2022
-
[32]
Blip: Bootstrapping language-image pre-training for unified vision-language understanding and generation
Li, J., Li, D., Xiong, C., and Hoi, S. Blip: Bootstrapping language-image pre-training for unified vision-language understanding and generation. In International conference on machine learning, pp.\ 12888--12900. PMLR, 2022 b
2022
-
[33]
W., Zhang, Y., Kwon, Y., Yeung, S., and Zou, J
Liang, V. W., Zhang, Y., Kwon, Y., Yeung, S., and Zou, J. Y. Mind the gap: Understanding the modality gap in multi-modal contrastive representation learning. Advances in Neural Information Processing Systems, 35: 0 17612--17625, 2022
2022
-
[34]
Lin, T.-Y., Maire, M., Belongie, S., Hays, J., Perona, P., Ramanan, D., Doll \'a r, P., and Zitnick, C. L. Microsoft coco: Common objects in context. In Computer Vision--ECCV 2014: 13th European Conference, Zurich, Switzerland, September 6-12, 2014, Proceedings, Part V 13, pp....
2014
-
[35]
and Jupp, P
Mardia, K. and Jupp, P. Directional Statistics. Wiley, 2000
2000
-
[36]
Mokady, R., Hertz, A., and Bermano, A. H. Clipcap: Clip prefix for image captioning. arXiv preprint arXiv:2111.09734, 2021
2021 arXiv
-
[37]
Murphy, K. P. Machine learning: a probabilistic perspective. MIT press, 2012
2012
-
[38]
Ou, Z. et al. Energy-based models with applications to speech and language processing. Foundations and Trends in Signal Processing , 18 0 (1-2): 0 1--199, 2024
2024
-
[39]
Concentration of mass on convex bodies
Paouris, G. Concentration of mass on convex bodies. Geometric & Functional Analysis GAFA, 16 0 (5): 0 1021--1049, 2006
2006
-
[40]
Language models are unsupervised multitask learners
Radford, A., Wu, J., Child, R., Luan, D., Amodei, D., and Sutskever, I. Language models are unsupervised multitask learners. OpenAI Blog, 1 0 (8), 2019. URL https://cdn.openai.com/better-language-models/language_models_are_unsupervised_multitask_learners.pdf
2019
-
[41]
W., Hallacy, C., Ramesh, A., Goh, G., Agarwal, S., Sastry, G., Askell, A., Mishkin, P., Clark, J., et al
Radford, A., Kim, J. W., Hallacy, C., Ramesh, A., Goh, G., Agarwal, S., Sastry, G., Askell, A., Mishkin, P., Clark, J., et al. Learning transferable visual models from natural language supervision. In International conference on machine learning, pp.\ 8748--8763. PMLR, 2021
2021
-
[42]
Hierarchical text-conditional image generation with clip latents
Ramesh, A., Dhariwal, P., Nichol, A., Chu, C., and Chen, M. Hierarchical text-conditional image generation with clip latents. arXiv preprint arXiv:2204.06125, 1 0 (2): 0 3, 2022
2022 arXiv
-
[43]
and Bialek, W
Ruderman, D. and Bialek, W. Statistics of natural images: Scaling in the woods. Advances in neural information processing systems, 6, 1993
1993
-
[44]
T., Argus, M., Fischer, V., and Brox, T
Schrodi, S., Hoffmann, D. T., Argus, M., Fischer, V., and Brox, T. Two effects, one trigger: On the modality gap, object bias, and information imbalance in contrastive vision-language representation learning. arXiv preprint arXiv:2404.07983, 2024
2024 arXiv
-
[45]
C., Bj \"o rkman, M., and Kragic, D
Shi, P., Welle, M. C., Bj \"o rkman, M., and Kragic, D. Towards understanding the modality gap in clip. In ICLR 2023 Workshop on Multimodal Representation Learning: Perks and Pitfalls, 2023
2023
-
[46]
Denoising diffusion implicit models
Song, J., Meng, C., and Ermon, S. Denoising diffusion implicit models. arXiv preprint arXiv:2010.02502, 2020
2010 arXiv
-
[47]
Deep learning on image denoising: An overview
Tian, C., Fei, L., Zheng, W., Xu, Y., Zuo, W., and Lin, C.-W. Deep learning on image denoising: An overview. Neural Networks, 131: 0 251--275, 2020
2020
-
[48]
High-Dimensional Probability: An Introduction with Applications in Data Science
Vershynin, R. High-Dimensional Probability: An Introduction with Applications in Data Science. Cambridge University Press, 2018
2018
-
[49]
Git: A generative image-to-text transformer for vision and language
Wang, J., Yang, Z., Hu, X., Li, L., Lin, K., Gan, Z., Liu, Z., Liu, C., and Wang, L. Git: A generative image-to-text transformer for vision and language. arXiv preprint arXiv:2205.14100, 2022
2022 arXiv
-
[50]
and Isola, P
Wang, T. and Isola, P. Understanding contrastive representation learning through alignment and uniformity on the hypersphere. In International conference on machine learning, pp.\ 9929--9939. PMLR, 2020
2020
-
[51]
Chatgpt or grammarly? evaluating chatgpt on grammatical error correction benchmark
Wu, H., Wang, W., Wan, Y., Jiao, W., and Lyu, M. Chatgpt or grammarly? evaluating chatgpt on grammatical error correction benchmark. arxiv, 2023
2023
-
[52]
Yu, J., Lin, Z., Yang, J., Shen, X., Lu, X., and Huang, T. S. Generative image inpainting with contextual attention. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.\ 5505--5514, 2018
2018
-
[53]
V., et al
Zhang, S., Roller, S., Goyal, N., Artetxe, M., Chen, M., Chen, S., Dewan, C., Diab, M., Li, X., Lin, X. V., et al. Opt: Open pre-trained transformer language models. arXiv preprint arXiv:2205.01068, 2022
2022 arXiv
-
[54]
and Weiss, Y
Zoran, D. and Weiss, Y. From learning models of natural image patches to whole image restoration. In 2011 international conference on computer vision, pp.\ 479--486. IEEE, 2011
2011
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.