REVIEW 4 major objections 6 minor 37 references
CLIP's embedding space is a hyperspherical semantic mixture, and modeling it that way improves long-tailed and out-of-distribution detection.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-02 04:28 UTC pith:RXS565GQ
load-bearing objection A plausible combination of standard MovMF with whitened CLIP, but the headline OOD/long-tail gains rest on a same-split evaluation protocol and may not survive held-out testing. the 4 major comments →
The Hyperspherical Geometry of CLIP Latent Space: A Semantic Mixture Model
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The central claim is that CLIP latent space is faithfully characterized as a hyperspherical semantic mixture rather than an isotropic Gaussian. Concretely, after a linear whitening transform z̃ = Σ^{-1/2}(z - μ) and unit normalization u = z̃/‖z̃‖, the paper models p(u) = Σ_k π_k C_d(κ_k) exp(κ_k μ_k^T u) and uses the log of this density as the likelihood score. Each von Mises-Fisher component corresponds to a coherent semantic prototype, so rare concepts are represented by their own mixture components instead of being penalized for distance from a global mean. The paper reports that this score cuts FPR95 on MS-COCO from 67.76% to 48.00% overall and from 75.05% to 33.48% on tail-only concepts
What carries the argument
The engine is a Mixture of von Mises-Fisher (MovMF) distributions on the unit hypersphere S^{d-1}, fit by the EM algorithm after whitening. The vMF density f(u; μ, κ) = C_d(κ) exp(κ μ^T u) has a mean direction (the semantic prototype) and a concentration κ controlling cluster tightness; the mixture log-likelihood log Σ_k π_k C_d(κ_k) exp(κ_k μ_k^T u) is the score. The same components produce closed-form posterior responsibilities γ_k(u), which give sparse semantic attribution and a projection operator used to anchor drifting embeddings.
Load-bearing premise
The load-bearing premise is that a single linear whitening transform removes only nuisance global covariance from raw CLIP embeddings, so after unit normalization every useful semantic signal is captured by direction on the sphere; if semantic information also lives in radial magnitude or in nonlinear structure whitening leaves behind, the fitted mixture and all its likelihood scores are distorted.
What would settle it
Take two semantic clusters with different average embedding norms (one consistently larger in radius). If, after whitening and unit normalization, likelihood scores can no longer separate the clusters while a model that uses radial magnitude still can, the core claim fails. Alternatively, rerun the OOD benchmark replacing whitened directions with raw unit-normalized directions: if the OOD gains vanish, the whitening assumption, not the mixture, is carrying the result.
If this is right
- Rare categories can receive high likelihood when they are near their own mixture component, so semantic rarity need no longer be conflated with distributional abnormality.
- OOD detection improves because low likelihood now means 'outside all learned semantic modes' rather than 'far from the global mean.'
- Semantic decomposition of an embedding reduces to one matrix multiplication against component centers, removing the need for sparse linear solvers or auxiliary decoders.
- The learned component directions can be manipulated directly, so the model doubles as a set of controllable semantic axes for generation.
- The same recipe carries over to other contrastive vision-language models, where the reported gains persist.
Where Pith is reading between the lines
- If the central claim is right, density estimation for contrastive embeddings generally should move from Euclidean Gaussians to directional mixtures; the same whitened-sphere plus vMF recipe is a natural default for any cosine-trained representation.
- The whitening step is doing a lot of work: a direct test would fit the mixture on raw unit-normalized embeddings without whitening and compare likelihood calibration, since the paper's own appendix argues that components then align with covariance directions rather than semantics.
- The flat mixture structure leaves the number of components fixed; a hierarchical or nonparametric extension (e.g., a Dirichlet-process vMF) is a plausible route to adaptive semantic granularity and may help very rare concepts share strength with parent clusters.
- Because the likelihood is a sum of exponentials in μ_k^T u, the model yields a closed-form score on the sphere, suggesting it could act as a geometry-aware prior or guidance term in latent diffusion.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper proposes MovMF-CLIP, a probabilistic model for CLIP embeddings. The method whitens raw CLIP embeddings (Eq. 1), unit-normalizes them (Eq. 2), and fits a mixture of von Mises-Fisher distributions by EM (Eqs. 3-8). The resulting closed-form likelihood (Eq. 9) is used as a density score, and posterior responsibilities (Eq. 10) provide a semantic decomposition. The authors report improvements over W-CLIP and other baselines on long-tail likelihood fairness (Table 1), OOD detection on MS-COCO vs. OpenImages (Table 2), semantic relevance and inference speed (Table 3), and stability under iterative CLIP-UnCLIP drift (Table 4). The mathematical development is standard and clearly presented.
Significance. Assuming the empirical results survive a rigorous, held-out evaluation, this would be a worthwhile contribution: it offers a simple, closed-form, geometry-consistent density for CLIP-like embeddings, with interpretable components and no auxiliary decoders. The use of vMF mixtures on the sphere is well matched to cosine-similarity training, and the paper is refreshingly clear about the whitening step. However, the current evaluation is compromised by fitting the whitening transform, the mixture density, and the hyperparameters (K,N) on the same MS-COCO validation split that is later used as the in-distribution set. The reported gains may therefore reflect memorization rather than a genuinely better geometric model. The central claim that CLIP latent space is 'more faithfully characterized as a hyperspherical semantic mixture rather than an isotropic Gaussian' needs direct, held-out likelihood evidence.
major comments (4)
- [Sec. 4.1, Tables 1-2] The density is fit on the evaluation split. The MS-COCO 2017 validation split is used for density estimation (whitening in Eq. 1 and EM in Eq. 5) and also as the ID set for long-tail and OOD evaluation. With K=500 and about 5k reference samples, each component has on average 10 points, so the mixture can memorize the ID set; high-concentration components can assign artificially high likelihood to training samples. W-CLIP's single Gaussian has less capacity, so the comparison is biased. The FPR95 reductions (67.76 to 48.00, 75.05 to 33.48) are not reliable evidence for the geometry claim. Please re-run with the density estimated on a disjoint split (e.g., COCO train or one half of validation) and evaluated on held-out ID samples, for all baselines.
- [Sec. 4.3, Table 7] Hyperparameters K and N are selected on the same Semantic Relevance metric and the same MS-COCO validation split that is reported in Table 3. The grid search in Table 7 shows K=500, N=10 as the best on this split; reporting the same number as the method's result is selection on the test set. This inflates the 0.673 Semantic Relevance and the comparison with SPLICE. Select hyperparameters on a separate validation split (or use nested CV) and report test-split results.
- [Tables 1-4] No uncertainty quantification is provided. Every table reports a single point estimate without standard errors, confidence intervals, or significance tests. Given the high-capacity mixture and the split leakage, this is not sufficient to support the 'significantly improves' claims in the abstract. Report results over multiple EM restarts or bootstrap resamples of the ID set.
- [Sec. 5, Appendix B] The headline geometric conclusion is inferred from task performance rather than directly tested. To support the claim that a hyperspherical mixture is more faithful than an isotropic Gaussian, report held-out log-likelihood comparisons against W-CLIP and against a GMM in the whitened space, plus an ablation with vMF fitted on raw normalized embeddings (no whitening). Appendix B argues that whitening preserves semantics, but no experiment tests whether radial information is semantically informative; this is a correctness risk for the central claim.
minor comments (6)
- [Sec. 3.3 vs. Appendix A] The notation is inconsistent: 'MovMF' and 'movMF' are used interchangeably. Please unify.
- [Appendix C, Eq. (11)] The Semantic Relevance metric relies on keyword extraction and content-word filtering; the exact procedure is not specified, making the metric hard to reproduce.
- [Sec. 4.1] The OpenImages subset is described as 'cleaned following VOS', but the number of OOD images and the filtering procedure are not reported.
- [Sec. 4.4] The projection step that reconstructs embeddings as weighted combinations of retained centers and rescales to the original norm is described only in prose; pseudo-code or an equation would help.
- [Sec. 4.1] The paper says hyperparameters are 'fixed across tasks' yet Sec. 4.3 uses K=500, N=10 selected in Appendix D; please clarify this statement.
- [Figure 1] Figure 1 is described as 'visualized via dimensionality reduction on real data'; the reduction method is not stated.
Circularity Check
Reported long-tail and OOD gains are largely in-sample: the MovMF density is fit on the same MS-COCO validation split that is then scored as ID, and K/N are tuned on the reported Semantic Relevance metric.
specific steps
-
fitted input called prediction
[Sec. 4.1-4.2, Tables 1-2]
"We adopt MS-COCO 2017 as the primary in-distribution (ID) dataset. Its validation split is used for both density estimation and long-tailed evaluation across semantic categories. ... Long-Tailed Likelihood Fairness (texts). We analyze captions of MS-COCO, partitioning into head and tail groups based on concept frequency statistics."
The MovMF density (Eq. 5) is fit by maximum likelihood on exactly the MS-COCO validation captions/embeddings that Table 1 then scores as head vs tail and Table 2 scores as ID. With K=500 components over roughly 5k reference samples (about 10 points per component on average), EM can place high-concentration vMF components on individual training captions, inflating their in-sample likelihood. The reported AUROC 0.5819 and FPR95 reductions are therefore in-sample measures of how well the fitted density remembers the ID split, not held-out predictions separating semantic rarity from distributional abnormality. The W-CLIP comparison is biased because a single Gaussian has far less capacity to memorize the evaluation split.
-
fitted input called prediction
[Sec. 4.3 and Appendix D, Tables 3 and 7]
"For our MovMF-CLIP, we use K=500 mixture components and retain the top N=10 keywords per component. Ablation studies over K and N are provided in Appendix D. ... We report the Semantic Relevance (1−d_H) on the MS-COCO validation set ... The best performance is achieved with K=500 and N=10, reaching a Semantic Relevance of 0.6726."
The hyperparameters K and N are selected by grid search on the same MS-COCO validation Semantic Relevance metric (Table 7), and the same metric and dataset are then reported as the headline result in Table 3 (0.673). Thus the final score is the maximum of the tuning curve, not an independent evaluation; part of the reported advantage over SPLICE comes from selection on the test metric. This is a milder form of fitted-input-called-prediction, but the reported number is not an out-of-sample estimate.
full rationale
No equation-level self-definition or load-bearing self-citation was found. The only author-overlap citation, Kang et al. 2025 (which includes author Yue Song), appears in related-work background and is not load-bearing for the MovMF derivation. The MovMF formulation itself, the EM updates, and the likelihood score are standard and not circular. However, the empirical support for the central geometric claim is compromised by an in-sample evaluation protocol: the density is estimated on the MS-COCO validation split that is later scored as ID in both the long-tail fairness and OOD tables, and the semantic-decomposition hyperparameters are tuned on the same Semantic Relevance metric used for the final comparison. These issues make the reported improvements partly artifacts of memorization and selection rather than demonstrating that hyperspherical mixtures are intrinsically better. The central claim still has independent modeling content, so the score is below 6, but the key empirical predictions are not fully out-of-sample.
Axiom & Free-Parameter Ledger
free parameters (4)
- Whitening mean μ and covariance Σ =
Estimated from MS-COCO validation set
- Number of mixture components K =
K=500
- Top keywords per component N =
N=10
- Mixture parameters (π_k, μ_k, κ_k) =
EM-MLE on MS-COCO validation
axioms (5)
- domain assumption All semantic information relevant to CLIP similarity is contained in the direction of the whitened embedding.
- domain assumption A linear whitening transform W = Σ^{-1/2} removes 'nuisance' covariance without destroying semantic clusters.
- domain assumption A finite mixture of vMF distributions with K components approximates the true distribution on S^{d-1} well enough for likelihood-based OOD detection.
- ad hoc to paper Each EM-learned component corresponds to a coherent semantic concept interpretable by humans.
- domain assumption OpenImages (cleaned by VOS) is a valid OOD distribution relative to MS-COCO as the ID distribution.
read the original abstract
Contrastive Language-Image Pretraining (CLIP) representations form a semantic embedding space governed by cosine similarity, reflecting an intrinsic hyperspherical geometry. However, existing probabilistic interpretations typically rely on Gaussian assumptions, which fail to capture this directional and multimodal structure. We propose a principled density model for the CLIP latent space based on Mixtures of von Mises-Fisher (MovMF) distributions defined on the unit hypersphere. Using the Expectation-Maximization (EM) algorithm, we efficiently learn a probabilistic model in which each mixture component corresponds to a coherent semantic concept. This formulation yields a closed-form likelihood naturally aligned with hyperspherical geometry, enabling accurate and interpretable density estimation. Empirically, our model significantly improves long-tailed and out-of-distribution detection and provides a natural semantic decomposition, representing each embedding as a sparse probabilistic combination of interpretable concepts. These results suggest that CLIP latent space is more faithfully characterized as a hyperspherical semantic mixture rather than an isotropic Gaussian, establishing a simple and geometrically consistent probabilistic framework for modeling and understanding multimodal representations. Project page is available at https://xiaoyuzhizi.github.io/movmf-clip/.
Figures
Reference graph
Works this paper leans on
-
[1]
Why not fit movMF directly onz/∥z∥?If we normalize first,u 0 =z/∥z∥, the subsequent movMF fit must simultaneously explain (i) global anisotropic scaling and (ii) genuine semantic multimodal- ity. In practice, this causes mixture components to align with dominant covariance directions rather than semantic modes, leading to redundant components, unstable co...
-
[2]
Usha Bhalla, Alex Oesterling, Suraj Srinivas, Flavio P
URLhttps://arxiv.org/abs/2505.06934. Usha Bhalla, Alex Oesterling, Suraj Srinivas, Flavio P. Calmon, and Himabindu Lakkaraju. In- terpreting clip with sparse linear concept embeddings (splice).Neurips,
-
[3]
remain competitive, indicating that the learned hyperspherical mixture structure is robust across different sets of hyperparameters. E EXTENDEDQUALITATIVEANALYSES We provide extensive results to further demonstrate the robustness, fine-grained interpretability of concept localization, and semantic stability under generative drifts of our MovMF-CLIP framew...
arXiv 2000
-
[6]
Xuefeng Du, Zhaoning Wang, Mu Cai, and Yixuan Li
URLhttps://arxiv.org/abs/ 2602.06218. Xuefeng Du, Zhaoning Wang, Mu Cai, and Yixuan Li. V os: Learning what you don’t know by virtual outlier synthesis.ICLR,
-
[7]
URLhttps://arxiv.org/abs/2202.01197. Yossi Gandelsman, Alexei A. Efros, and Jacob Steinhardt. Interpreting clip’s image representa- tion via text-based decomposition.ICLR,
-
[8]
URLhttps://arxiv. org/abs/2205.14459. Tao Gong, Qi Chu, Bin Liu, Zhou Wei, and Nenghai Yu. Fe-clip: Frequency enhanced clip model for zero-shot anomaly detection and segmentation.ICCV,
-
[9]
com/virtual/2025/poster/2571
URLhttps://iccv.thecvf. com/virtual/2025/poster/2571. 12 Jianfang He, Min Cao, Silong Peng, and Qiong Xie. Rareclip: Rarity-aware online zero-shot indus- trial anomaly detection. InProceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), pp. 24478–24487, October
2025
-
[10]
Xue Jiang, Feng Liu, Zhen Fang, Hong Chen, Tongliang Liu, Feng Zheng, and Bo Han
URLhttps://arxiv.org/abs/2507.09118. Xue Jiang, Feng Liu, Zhen Fang, Hong Chen, Tongliang Liu, Feng Zheng, and Bo Han. Negative label guided ood detection with pretrained vision-language models.ICLR,
-
[11]
Raphi Kang, Yue Song, Georgia Gkioxari, and Pietro Perona
URLhttps: //arxiv.org/abs/2403.20078. Raphi Kang, Yue Song, Georgia Gkioxari, and Pietro Perona. Is clip ideal? no. can we fix it? yes! ICCV,
-
[12]
Elias Kempf, Simon Schrodi, Max Argus, and Thomas Brox
URLhttps://arxiv.org/abs/2503.08723. Elias Kempf, Simon Schrodi, Max Argus, and Thomas Brox. When and how does clip enable domain and compositional generalization?ICML,
-
[13]
URLhttps://arxiv.org/abs/ 2502.09507. Alina Kuznetsova, Hassan Rom, Neil Alldrin, Jasper Uijlings, Ivan Krasin, Jordi Pont-Tuset, Shahab Kamali, Stefan Popov, Matteo Malloci, Alexander Kolesnikov, Tom Duerig, and Vittorio Ferrari. The open images dataset v4: Unified image classification, object detection, and visual relation- ship detection at scale.Inter...
Pith/arXiv arXiv 1956
-
[15]
Meir Yossef Levi and Guy Gilboa
URLhttps://arxiv.org/abs/2407.12442. Meir Yossef Levi and Guy Gilboa. The double-ellipsoid geometry of clip.ICML,
-
[16]
Junnan Li, Dongxu Li, Caiming Xiong, and Steven Hoi
URL https://arxiv.org/abs/2411.14517. Junnan Li, Dongxu Li, Caiming Xiong, and Steven Hoi. Blip: Bootstrapping language-image pre- training for unified vision-language understanding and generation.ICML,
-
[17]
Junnan Li, Dongxu Li, Silvio Savarese, and Steven Hoi
URLhttps: //arxiv.org/abs/2201.12086. Junnan Li, Dongxu Li, Silvio Savarese, and Steven Hoi. Blip-2: Bootstrapping language-image pre-training with frozen image encoders and large language models.ICML,
-
[19]
Yifei Ming, Ziyang Cai, Jiuxiang Gu, Yiyou Sun, Wei Li, and Yixuan Li
URLhttps://arxiv.org/abs/2203.02053. Yifei Ming, Ziyang Cai, Jiuxiang Gu, Yiyou Sun, Wei Li, and Yixuan Li. Delving into out-of- distribution detection with vision-language representations.Advances in neural information pro- cessing systems, 35:35087–35102,
-
[20]
URLhttps: //arxiv.org/abs/2406.08074. 13 Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agar- wal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, Gretchen Krueger, and Ilya Sutskever. Learning transferable visual models from natural language supervision.ICML,
-
[22]
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj ¨orn Ommer
URLhttps://arxiv.org/abs/ 2204.06125. Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bj ¨orn Ommer. High- resolution image synthesis with latent diffusion models.CVPR,
-
[23]
URLhttps://arxiv. org/abs/2112.10752. Jie-Jing Shao, Jiang-Xin Shi, Xiao-Wen Yang, Lan-Zhe Guo, and Yu-Feng Li. Examining the achilles’ heel of CLIP models: The worst-performing categories,
-
[24]
Harald Steck, Chaitanya Ekanadham, and Nathan Kallus
URLhttps://arxiv.org/abs/2011.13456. Harald Steck, Chaitanya Ekanadham, and Nathan Kallus. Is cosine-similarity of embeddings re- ally about similarity?WWW,
Pith/arXiv arXiv 2011
-
[25]
URLhttp://dx.doi.org/10.1145/3589335. 3651526. Weijie Tu, Weijian Deng, and Tom Gedeon. A closer look at the robustness of contrastive language- image pre-training (clip).Neurips,
-
[26]
Arash Vahdat, Karsten Kreis, and Jan Kautz
URLhttps://arxiv.org/abs/2402.07410. Arash Vahdat, Karsten Kreis, and Jan Kautz. Score-based generative modeling in latent space. NeurIPS,
-
[27]
Qizhou Wang, Yong Lin, Yongqiang Chen, Ludwig Schmidt, Bo Han, and Tong Zhang
URLhttps://arxiv.org/abs/2106.05931. Qizhou Wang, Yong Lin, Yongqiang Chen, Ludwig Schmidt, Bo Han, and Tong Zhang. A sober look at the robustness of clips to spurious features.Neurips,
-
[28]
URLhttps://arxiv. org/abs/2403.11497. Tongzhou Wang and Phillip Isola. Understanding contrastive representation learning through align- ment and uniformity on the hypersphere.ICML,
-
[29]
Xin Wen, Bingchen Zhao, Yilun Chen, Jiangmiao Pang, and Xiaojuan Qi
URLhttps://arxiv.org/abs/ 2005.10242. Xin Wen, Bingchen Zhao, Yilun Chen, Jiangmiao Pang, and Xiaojuan Qi. What makes clip more robust to long-tailed pre-training data? a controlled study for transferable insights.Neurips,
Pith/arXiv arXiv 2005
-
[30]
Jiahui Yu, Zirui Wang, Vijay Vasudevan, Legg Yeung, Mojtaba Seyedhosseini, and Yonghui Wu
URLhttps://arxiv.org/abs/2405.21070. Jiahui Yu, Zirui Wang, Vijay Vasudevan, Legg Yeung, Mojtaba Seyedhosseini, and Yonghui Wu. Coca: Contrastive captioners are image-text foundation models.TMLR,
-
[31]
Vladimir Zaigrajew, Hubert Baniecki, and Przemyslaw Biecek
URLhttps: //arxiv.org/abs/2205.01917. Vladimir Zaigrajew, Hubert Baniecki, and Przemyslaw Biecek. Interpreting clip with hierarchical sparse autoencoders.ICML,
-
[32]
Richard Zhang, Phillip Isola, Alexei A
URLhttps://arxiv.org/abs/2502.20578. Richard Zhang, Phillip Isola, Alexei A. Efros, Eli Shechtman, and Oliver Wang. The unreasonable effectiveness of deep features as a perceptual metric.CVPR,
-
[34]
URLhttps://arxiv.org/ abs/2310.18961. 14 A FUTUREWORK A.1 CONNECTION WITHSCORE-BASEDGENERATIVEMODELS Beyond density estimation, the hyperspherical density learned by MovMF-CLIP may provide a use- ful geometric prior for generative modeling. Modern latent diffusion and score-based models (Song et al., 2021; Rombach et al., 2022; Vahdat et al.,
arXiv 2021
-
[35]
In contrast, the movMF mixture defines a directional density on the hypersphere, which naturally yields a closed-form score function on the manifold
typically assume simple Gaussian priors in the latent space. In contrast, the movMF mixture defines a directional density on the hypersphere, which naturally yields a closed-form score function on the manifold. This observation suggests a potential connection between hyperspherical density modeling and Riemannian score-based genera- tive models (Bortoli e...
2022
-
[2018]
URLhttps://arxiv. org/abs/1801.03924. Qihang Zhou, Guansong Pang, Yu Tian, Shibo He, and Jiming Chen. Anomalyclip: Object-agnostic prompt learning for zero-shot anomaly detection.ICLR,
-
[2020]
doi: 10.1007/s11263-020-01316-z
ISSN 1573-1405. doi: 10.1007/s11263-020-01316-z. URLhttp://dx.doi.org/ 10.1007/s11263-020-01316-z. Mengcheng Lan, Chaofeng Chen, Yiping Ke, Xinjiang Wang, Litong Feng, and Wayne Zhang. Clearclip: Decomposing clip representations for dense vision-language inference.ECCV,
-
[2021]
Aditya Ramesh, Prafulla Dhariwal, Alex Nichol, Casey Chu, and Mark Chen
URLhttps://arxiv.org/abs/2103.00020. Aditya Ramesh, Prafulla Dhariwal, Alex Nichol, Casey Chu, and Mark Chen. Hierarchical text- conditional image generation with clip latents,
-
[2022]
Chentao Cao, Zhun Zhong, Zhanke Zhou, Yang Liu, Tongliang Liu, and Bo Han
URLhttps: //arxiv.org/abs/2202.02763. Chentao Cao, Zhun Zhong, Zhanke Zhou, Yang Liu, Tongliang Liu, and Bo Han. Envisioning outlier exposure by large language models for out-of-distribution detection.ICML, 2024a. URL https://arxiv.org/abs/2406.00806. Yunkang Cao, Jiangning Zhang, Luca Frittoli, Yuqi Cheng, Weiming Shen, and Giacomo Boracchi. Adaclip: Ada...
-
[2023]
Weixin Liang, Yuhui Zhang, Yongchan Kwon, Serena Yeung, and James Zou
URLhttps: //arxiv.org/abs/2301.12597. Weixin Liang, Yuhui Zhang, Yongchan Kwon, Serena Yeung, and James Zou. Mind the gap: Un- derstanding the modality gap in multi-modal contrastive representation learning.Neurips,
-
[2024]
URLhttps: //arxiv.org/abs/2402.10376. Valentin De Bortoli, Emile Mathieu, Michael Hutchinson, James Thornton, Yee Whye Teh, and Arnaud Doucet. Riemannian score-based generative modelling.NeurIPS,
-
[2025]
URLhttps://arxiv.org/abs/2502.19842. Arindam Banerjee, Inderjit S. Dhillon, Joydeep Ghosh, and Suvrit Sra. Clustering on the unit hyper- sphere using von mises-fisher distributions.JMLR,
-
[2026]
Gr´egoire Dhimo ¨ıla, Thomas Fel, Victor Boutin, and Agustin Picard
URLhttps://arxiv.org/abs/2602.03282. Gr´egoire Dhimo ¨ıla, Thomas Fel, Victor Boutin, and Agustin Picard. Cross-modal redundancy and the geometry of vision-language embeddings,
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.