ConceptioArchivearXiv CS
arXiv CSopen access

Localized Conformal Prediction for Image Classification with Vision-Language Models

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
machine learning, deep learning, neural networks

Localized Conformal Prediction for Image Classification with Vision-Language Models Clément Fuchs*, Tim Bary*, Benoı̂t Macq

arXiv:2606.31577v1 [cs.CV] 30 Jun 2026

ICTEAM, UCLouvain Louvain-la-Neuve, Belgium

Abstract—Conformal predictions have attracted significant attention in the field of uncertainty quantification, mainly because of their strong marginal coverage guarantees. Full conditional guarantee is not an attainable goal, a well known fact in conformal predictions literature. As a result, several approaches have tried to approximate this behavior by adapting the conformal sets of test-time samples according to their similarity to calibration examples. Although the latter has gained traction and shown impressive performances for regression problems, its application to image classification remains under-explored. We conduct an extensive benchmarking on natural image classification tasks with vision-language models (VLMs), using our open source implementation of a recent localized conformal prediction algorithm. We show that straightforward usage of the cosine similarity between test-time and calibration visual features, an intuitive choice for VLMs, is not sufficient to improve over the non-local baselines. In response, we propose a simple non-linear transformation of the cosine similarities, which conserves marginal coverage guarantees and achieves statistically significant mean set sizes reduction. Code is available at github.com/cfuchs2023/lcpvlm/.

I. I NTRODUCTION Modern machine learning models achieve remarkable accuracy on visual tasks such as object detection, medical image analysis, and human action recognition. However, these models typically produce point predictions without quantifying uncertainty, which is a major shortcoming in safetycritical applications. In domains such as medical diagnostics, autonomous driving, or environmental monitoring, reliable uncertainty estimates help identify ambiguous inputs, flag unreliable predictions, and guide human oversight [4], [21]. Conformal prediction (CP) is a statistical framework for uncertainty quantification in machine learning. Given a predictive model and a set of calibration data, CP produces prediction sets or intervals that guarantee a user-defined level of coverage, assuming exchangeability of the data—a weaker assumption than i.i.d [23]. Due to its model-agnostic nature and theoretical guarantees, CP has been adopted in areas where reliable uncertainty estimates are crucial, such as medical imaging and human-in-the-loop systems. Despite these strengths, a well-known limitation of CP is that it only guarantees marginal coverage (i.e., averaged over the entire data distribution), but not conditional coverage for *C. Fuchs and T. Bary contributed equally. C. Fuchs and T. Bary are funded by the MedReSyst project, FEDER and the Walloon Region. Computational resources have been provided by the CÉCI, funded by the F.R.S.-FNRS under Grant No. 2.5020.11 and the Walloon Region.

subgroups (e.g., specific classes or feature regions) [1]. This leads to coverage disparities, where some subpopulations are under- or over-covered. These disparities often stem from the global nature of the calibration step, which assigns equal importance to all calibration examples. Localized Conformal Prediction (LCP), introduced in [8], addresses this limitation by weighting calibration examples based on their similarity to the test sample. This yields testspecific prediction intervals that adapt to local distributional properties. While LCP retains the marginal coverage guarantees of standard CP, it can also offer improved local coverage under suitable conditions. So far, however, LCP has mainly been studied in regression settings and tested on synthetic datasets. In this paper, we apply the LCP framework to classification tasks and benchmark it against standard CP on an extensive collection of datasets. Our approach integrates LCP into Vision-Language Models (VLMs) by leveraging their latent representations to define similarity. We show that using a nonlinear transformation of the cosine similarity to weight the calibration set leads to improved set sizes and class-conditional coverage compared to traditional CP. Our contributions are threefold: 1) LCP for Classification: We benchmark LCP for classification tasks using VLMs and evaluate it with different conformal classification scores such as LAC, APS, and RAPS. Additionally, we show that cosine similarity is a suboptimal weighting function for LCP in classification and propose a non-linear transformation to enhance its effectiveness. 2) Extensive Benchmarking: We evaluate our method on nine diverse image classification datasets, showing that LCP significantly improves average prediction set size. 3) Open-Source Implementation: We release the first, to our knowledge, open-source implementation of LCP for classification, compatible with a wide range of datasets and models. The remainder of this article is structured as follows. Section II reviews CP and LCP, including classification-specific conformal scores and an overview of VLMs. Section III describes our experimental setup and introduces the proposed non-linear transformation of cosine similarity. In Section IV, we report and analyze the experimental results. Finally, Section V concludes the paper and outlines directions for future work.

II. BACKGROUND

modified as ∗

sRAPS (k ∗ ) = sAPS + λreg i i

A. Conformal prediction

q X

1q>kreg .

(5)

q=1

Conformal predictions methods generally follow the same basic principle. First, conformal scores si (ki∗ ) are computed for n calibration samples, which differ from the training, validation, and test samples, with the knowledge of their ground-truth classes ki∗ . Then, the 1 − α quantile of these scores are computed as   n+1 ∗ qα = Quantile {si (ki ); 1 ≤ i ≤ n}; (1 − α) (1) n for a given error level α. Finally, for a test time sample xtest , all classes k such that stest (k) ≤ qα are retained to form the conformal prediction set C(xtest ). One major difference between conformal prediction methods is the way they construct their conformal scores from the prediction vectors yi , belonging to the K−simplex ∆K , given by the model. In the following, we present four different scores which are ubiquitous in the literature. a) TopK: The TopK conformal methods uses the rank of the class in the prediction vector as the conformal scores. Formally, let Pi the permutation function yielding the indexes sorting the components of yi,k in decreasing order. Then, the TopK conformal score reads as sTopK (ki∗ ) = Pi (ki∗ ).

(2)

b) Least Ambiguous set-valued Classifier: The Least Ambiguous set-valued Classifier (LAC) [12], [18], [23] uses conformal scores defined as follow : sLAC (ki∗ ) = 1 − yi,ki∗ .

(3)

Notice how this procedure may return empty sets for prediction vectors close to decision boundaries, a behavior considered undesirable in the literature. c) Adaptive Prediction Sets: Subsequently, the Adaptive Prediction Sets (APS) method was introduced in [17]. It uses a different conformal score, which is the cumulated sum of the components of the soft label vector yi , sorted in decreasing order, up to the component corresponding to the ground-truth label. Using the same notations as for TopK, let q ∗ the rank of the ground truth labels in the sorted prediction vector, i.e. the integer such that Pi−1 (q ∗ ) = k ∗ . The APS score then reads ∗

APS

s

(ki∗ ) =

q X

yi,P −1 (q) . i

(4)

q=1

This procedure improves on the problem of non-empty conformal sets, but comes at the expense of prediction sets much larger than those constructed by the LAC method. d) Regularized Adaptive Prediction Sets: As a result, regularized APS (RAPS) was introduced in [1]. It introduces two additional parameters, kreg ∈ N and λreg ∈ R, which penalize excessive set sizes. In detail, the APS score is

The parameters kreg and λreg are estimated from the data by splitting the calibration set into two additional subsets. One is dedicated to the computation of these parameters, the other to the computation of the quantile. We follow the same setup as [1] in our implementation. B. Zero-Shot Prediction with Vision-Language Models Generally, a VLM projects both images and textual descriptions into a common latent space, enabling measurement of their similarities. The textual descriptions of target classes provided by the user, so called textual prompts, are transformed into numerical tokens ck . The latter are then mapped by the textual encoder to normalized embeddings tk on the unit-hypersphere of Rd , where d is the latent space dimension. Similarly, the image xi is processed by the visual encoder to produce embeddings f i on the same unit-hypersphere. Prediction vectors are then obtained with a softmax transformation: exp(fiT tk /T ) yi,k = PK T j exp(fi tk /T )

(6)

where T is a parameter of the model, typically set to 0.01. The Zero-Shot prediction is then k̂ = argmaxk yi,k . In this paper, we use models trained within the CLIP framework [16]. We investigate four different models, characterized by their visual encoder, either be ViT [5] based (ViT-B/16, ViT-L/14) or CNN [11] based (RN50, RN101). We use the prompts ”a photo of a {class}.” for all experiments. Notice how f Ti f j is an intuitive choice to measure the similarity between images xi and xj . The latter has been used successfully in the fewshot adaptation literature, for instance by Tip-Adapter [26]. C. Localized conformal prediction We implement the algorithm presented in [8]. For a given test sample xtest and its corresponding projection in a latent space f test , LCP assigns greater importance to calibration examples that are more similar to it, using a localizer function H(f test , f i ) ∈ [0, 1]. This yields a test-specific, weighted empirical distribution over conformal scores, resulting in prediction sets that better adapt to local structure in the feature space. In particular, given a conformal score si , i = 1, . . . , n for each calibration example, the weighted empirical distribution of scores is given by: F̂(f test ) =

n X

H(f test , f i ) Pn δsi , j=1 H(f test , f j ) i=1

(7)

where δsi is a point mass at the score si . For classification with label space Y = {1, . . . , K}, a class k is included in the prediction set for the test point if its testtime score stest (k) does not exceed a quantile threshold:

1.0

(8)

where qα̃ is the 1 − α̃ quantile of the weighted distribution, and α̃ is chosen to ensure a marginal coverage of 1 − α. We refer to [8] for additional details regarding the algorithm and technical proofs about the coverage guarantee of LCP.

III. M ETHODS

EuroSAT | m = 30 ; = 1.00 Aircraft | m = 22 ; = 0.90 SUN397 | m = 4 ; = 0.90 Food101 | m = 1 ; = 0.86

0.8 H(fi, fj)

C(xtest ) = {k ∈ Y : stest (k) ≤ qα̃ } ,

0.6 0.4 0.2 0.0

A. Experimental setting a) Datasets: We follow the settings of previous works [27] and use 9 diverse images classification datasets: SUN397 [25] for classification of scenes, Aircraft [13] for aircrafts, EuroSAT [9] for satellite images, StanfordCars [10] for cars models, Food101 [2] for food items, Pets [15] for pet breeds, Flower102 [14] for flowers species, DTD [3] for textures and UCF101 [20] for actions recognition. We exclude Caltech101 [6] from the benchmark, as most backbones achieves an accuracy higher than the target coverage 1 − α for α = 0.1. Details about the number of samples and labels distribution is provided in Supplementary Section A. b) Calibration sets generation: We uniformly sample 1000 images from the dataset for calibration, and use the remaining data to measure the metrics exposed in the next Section. Therefore, the calibration have the same label distribution as the dataset (see Supplementary Section A). We use ten random seeds for each dataset, and use the same calibration / test splits for all methods. c) Metrics: The CP literature usually wants to balance two objectives: (1) predictive efficiency (i.e., producing small prediction sets); and (2) conditional validity (i.e., maintaining the coverage guarantee across data subgroups). Efficiency is measured by the mean set size over the set of test samples Stest : X 1 Mean Set Size(Stest ) = |C(x)|. (9) |Stest | x∈Stest

To assess conditional validity, we partition the test set by true class labels: P = {Sgroup }. For each group, the coverage Cov is: X 1 Cov(Sgroup ) = 1y∈C(x) . (10) |Sgroup | (x,y)∈Sgroup

We follow previous works [7] and use two derived metrics: CovGap: average deviation from the target coverage: 1 X |Cov(Sgroup ) − (1 − α)| . CovGap(Stest ) = |P| Sgroup ∈P (11) • MCCC: worst-case coverage across groups: •

MCCC(Stest ) = min Cov(Sgroup ). Sgroup ∈P

(12)

0.0

0.2

0.4 0.6 Cosine similarity fTifj

0.8

1.0

Fig. 1: Examples of optimal sigmoid transformations (see Eq. 13) obtained with our cross validation procedure (see Section III-B). The dotted black line corresponds to H(f i , f j ) = f Ti f j , the naive version of the localized algorithm. B. Transformation of Cosine Similarity To define the localizer H in the LCP framework, we apply a normalized sigmoid transformation to the cosine similarity between samples: H(f i , f j ) =

1 + exp(−m(1 − τ )) , 1 + exp(−m(f Ti f j − τ ))

(13)

where m > 0 controls the sigmoid’s steepness, and τ ∈ [0, 1] sets its inflection point. We tune m and τ via 5-fold crossvalidation on the calibration set, so as to minimize the average set size. Finally, we take the median of the selected m values and the mean of the selected τ values across folds. In our experiments, we search over τ ∈ {0.8, 0.9, 1.0} and m ∈ {1, 2, . . . , 30}. IV. R ESULTS A. Mean set sizes We present results concerning the mean set sizes in Table I. To assess the significance of the differences in mean set sizes between local methods and non-local baselines, we perform a paired t-test [22] on the per-fold difference when it succeeds a Shapiro gaussianity test [19], and a Wilcoxon test [24] otherwise. We see that our approach achieves a decrease in mean set sizes for 9 out of 9 datasets for 3 out of 4 backbones compared to the non-local TopK, with statistical significance levels of least 0.01. Conversely, the naive approach fails to decrease the mean set sizes significantly compared to the non-local TopK, and even increases their sizes with statistical significance on several datasets and backbones (e.g. DTD with ViT-B/16, or UCF101 with RN50). This trend is confirmed with other non-local baselines, although not as sharply as with TopK. We see that the naive approach degrades mean set sizes with statistical significance for several other conformal scores, such as APS for Aircraft with ViT-B/16. However, our approach achieves a statistically significant decrease of the

mean set size in the latter setting, from 18.11 for the nonlocal baseline down to 17.43. Overall, these results prove the effectiveness of our approach and the necessity of transforming the cosine similarities when using LCP. As an illustration, Figure 1 shows examples of sigmoidal transformations obtained with our cross validation strategy exposed in Section III-B. B. Coverage metrics We present results concerning coverage metrics in Table II, namely CovGap (see Eq. 11) and MCCC (see Eq. 12). Compared to the mean set sizes, it is more difficult to identify trends that hold across datasets and backbones. As a general observation, the local algorithms seem to more closely follow the behavior of the non-local baselines. However, there are still several instances where our approach improves MCCC, e.g., for the LAC conformal score on Pets with ViT-B/16. However, on the same dataset with the same backbone, the MCCC is degraded compared to the non-local baseline when using the TopK conformal score. For the CovGap metric, the results obtained with the local algorithms are almost identical to the non-local baselines across all datasets and backbones. This result suggests that localization of conformal prediction is not sufficient to minimize the CovGap for image classification using VLMs. V. C ONCLUSION In this paper, we presented an extensive benchmarking of localized conformal prediction on a variety of image classification tasks with several VLMs and conformal scores. We showed how the naive approach, using a cosine similarity in the visual latent space (an intuitive choice for VLMs), fails to improve over the non-local baselines, even degrading the mean set size in several cases. We thus introduced a sigmoidal transformation of the cosine similarities, using cross-validation on the calibration samples to tune its hyperparameters. This approach allowed to consistently improve over the non-local baselines across datasets and backbones, often achieving a statistically significant reduction of set sizes. Conversely, we showed that improvements in classical coverage-related metrics were less impacted by the local algorithms, with the coverage gap very closely following the behavior of the nonlocal baselines. We hope these findings as well as our open source code will contribute to the deployment of localized conformal prediction algorithms in real-world applications. R EFERENCES [1] A. Angelopoulos, S. Bates, J. Malik, and M. I. Jordan, “Uncertainty sets for image classifiers using conformal prediction,” arXiv preprint arXiv:2009.14193, 2020. [2] L. Bossard, M. Guillaumin, and L. Van Gool, “Food-101–mining discriminative components with random forests,” in Computer Vision– ECCV 2014: 13th European Conference, Zurich, Switzerland, September 6-12, 2014, Proceedings, Part VI 13. Springer, 2014, pp. 446–461. [3] M. Cimpoi, S. Maji, I. Kokkinos, S. Mohamed, and A. Vedaldi, “Describing textures in the wild,” in Proceedings of the IEEE conference on computer vision and pattern recognition, 2014, pp. 3606–3613. [4] J. C. Cresswell, Y. Sui, B. Kumar, and N. Vouitsis, “Conformal prediction sets improve human decision making,” in Forty-first International Conference on Machine Learning, 2024.

[5] A. Dosovitskiy, L. Beyer, A. Kolesnikov, D. Weissenborn, X. Zhai, T. Unterthiner, M. Dehghani, M. Minderer, G. Heigold, S. Gelly et al., “An image is worth 16x16 words: Transformers for image recognition at scale,” arXiv preprint arXiv:2010.11929, 2020. [6] L. Fei-Fei, R. Fergus, and P. Perona, “Learning generative visual models from few training examples: An incremental bayesian approach tested on 101 object categories,” in 2004 conference on computer vision and pattern recognition workshop. IEEE, 2004, pp. 178–178. [7] L. Fillioux, J. Silva-Rodrı́guez, I. B. Ayed, P.-H. Cournède, M. Vakalopoulou, S. Christodoulidis, and J. Dolz, “Are foundation models for computer vision good conformal predictors?” arXiv preprint arXiv:2412.06082, 2024. [8] L. Guan, “Localized conformal prediction: A generalized inference framework for conformal prediction,” Biometrika, vol. 110, no. 1, pp. 33–50, 2023. [9] P. Helber, B. Bischke, A. Dengel, and D. Borth, “Eurosat: A novel dataset and deep learning benchmark for land use and land cover classification,” IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing, vol. 12, no. 7, pp. 2217–2226, 2019. [10] J. Krause, M. Stark, J. Deng, and L. Fei-Fei, “3d object representations for fine-grained categorization,” in Proceedings of the IEEE international conference on computer vision workshops, 2013, pp. 554–561. [11] Y. LeCun, Y. Bengio et al., “Convolutional networks for images, speech, and time series,” The handbook of brain theory and neural networks, vol. 3361, no. 10, p. 1995, 1995. [12] J. Lei, A. Rinaldo, and L. Wasserman, “A conformal prediction approach to explore functional data,” Annals of Mathematics and Artificial Intelligence, vol. 74, pp. 29–43, 2015. [13] S. Maji, E. Rahtu, J. Kannala, M. Blaschko, and A. Vedaldi, “Finegrained visual classification of aircraft,” arXiv preprint arXiv:1306.5151, 2013. [14] M.-E. Nilsback and A. Zisserman, “Automated flower classification over a large number of classes,” in 2008 Sixth Indian conference on computer vision, graphics & image processing. IEEE, 2008, pp. 722–729. [15] O. M. Parkhi, A. Vedaldi, A. Zisserman, and C. Jawahar, “Cats and dogs,” in 2012 IEEE conference on computer vision and pattern recognition. IEEE, 2012, pp. 3498–3505. [16] A. Radford, J. W. Kim, C. Hallacy, A. Ramesh, G. Goh, S. Agarwal, G. Sastry, A. Askell, P. Mishkin, J. Clark et al., “Learning transferable visual models from natural language supervision,” in International conference on machine learning. PMLR, 2021, pp. 8748–8763. [17] Y. Romano, M. Sesia, and E. Candes, “Classification with valid and adaptive coverage,” Advances in Neural Information Processing Systems, vol. 33, pp. 3581–3591, 2020. [18] M. Sadinle, J. Lei, and L. Wasserman, “Least ambiguous set-valued classifiers with bounded error levels,” Journal of the American Statistical Association, vol. 114, no. 525, pp. 223–234, 2019. [19] S. S. Shapiro and M. B. Wilk, “An analysis of variance test for normality (complete samples),” Biometrika, vol. 52, no. 3-4, pp. 591–611, 1965. [20] K. Soomro, A. R. Zamir, and M. Shah, “Ucf101: A dataset of 101 human actions classes from videos in the wild,” arXiv preprint arXiv:1212.0402, 2012. [21] E. Straitouri and M. G. Rodriguez, “Designing decision support systems using counterfactual prediction sets,” in Forty-first International Conference on Machine Learning, 2024. [22] Student, “The probable error of a mean,” Biometrika, pp. 1–25, 1908. [23] V. Vovk, A. Gammerman, and G. Shafer, Algorithmic learning in a random world. Springer, 2005, vol. 29. [24] F. Wilcoxon, “Individual comparisons by ranking methods,” in Breakthroughs in statistics: Methodology and distribution. Springer, 1992, pp. 196–202. [25] J. Xiao, J. Hays, K. A. Ehinger, A. Oliva, and A. Torralba, “Sun database: Large-scale scene recognition from abbey to zoo,” in 2010 IEEE computer society conference on computer vision and pattern recognition. IEEE, 2010, pp. 3485–3492. [26] R. Zhang, W. Zhang, R. Fang, P. Gao, K. Li, J. Dai, Y. Qiao, and H. Li, “Tip-adapter: Training-free adaption of clip for few-shot classification,” in European conference on computer vision. Springer, 2022, pp. 493– 510. [27] K. Zhou, J. Yang, C. C. Loy, and Z. Liu, “Learning to prompt for visionlanguage models,” International Journal of Computer Vision, vol. 130, no. 9, pp. 2337–2348, 2022.

TABLE I: Averaged set sizes (see Eq. 9) over 10 folds, for α = 0.1. The best (i.e., lowest) values are highlighted in bold. Statistical significance in the performance difference at the 0.05, 0.01 and 0.001 levels for a paired t-test (resp. Wilcoxon test) w.r.t. the non-local baseline are denoted by ∗ (resp. ◦ ), ∗∗ (resp. ◦◦ ), and ∗∗∗ (resp. ◦◦◦ ). L- denotes local approaches (see Section II-C). Naive corresponds to the black dotted line in Fig. 1, while the methods highlighted in pink corresponds to our procedure described in Section III-B. Standard deviation is noted after the ± signs.

67.5 5.90 ±0.74 6.23◦ ±0.63 4.72◦◦◦ ±0.40 3.42 ±0.25 3.80◦◦◦ ±0.29 3.32◦◦ ±0.27 6.41 ±0.34 6.80◦◦◦ ±0.44 6.20◦ ±0.41 5.10 ±1.01 5.36∗∗ ±1.13 4.85 ±0.57

48.3 6.00 ±0.00 ◦◦◦ 5.31 ±0.19 4.28◦◦◦ ±0.13 4.20 ±0.06 4.16◦◦◦ ±0.07 3.94◦◦◦ ±0.13 4.63 ±0.12 4.58◦◦◦ ±0.12 4.52◦◦◦ ±0.11 4.52 ±0.44 4.46 ±0.42 4.07∗∗ ±0.43

65.6 3.80 ±0.42 3.80 ±0.42 3.26◦◦◦ ±0.25 2.46 ±0.11 2.63◦◦◦ ±0.16 2.46 ±0.17 3.72 ±0.18 3.89◦◦◦ ±0.18 3.70 ±0.19 3.55 ±0.33 3.67◦◦ ±0.42 3.53 ±0.35

70.8 9.50 ±0.85 ◦◦◦ 8.27 ±0.80 7.57◦◦◦ ±0.62 5.50 ±0.66 4.93◦◦◦ ±0.52 4.92◦◦◦ ±0.44 6.41 ±0.55 5.85◦◦◦ ±0.44 6.15◦ ±0.49 5.88 ±1.89 5.39 ±1.19 5.59 ±1.33

24.9 22.00 ±0.82 22.36◦ ±0.82 20.10◦◦◦ ±0.80 18.11 ±0.96 19.07◦◦◦ ±0.87 17.43◦ ±0.81 18.48 ±0.62 19.31◦◦◦ ±0.56 18.11◦ ±0.52 15.77 ±2.01 16.36∗∗ ±2.12 15.34∗ ±1.64

62.6 4.80 ±0.42 4.50◦ ±0.44 4.38◦◦ ±0.37 3.47 ±0.39 3.54◦◦ ±0.37 3.44 ±0.35 7.68 ±0.82 7.77◦◦ ±0.84 7.67 ±0.82 4.49 ±0.45 4.54 ±0.40 4.50∗ ±0.45

01 d1 Fo o

SU N 39

A irc

ra f

t

7

2 er 10

ar s St an

Fl ow

89.1 2.00 ±0.00 ◦◦◦ 1.19 ±0.21 1.17◦◦◦ ±0.06 1.06 ±0.03 1.07◦ ±0.04 1.09◦ ±0.05 1.63 ±0.03 1.65◦◦ ±0.03 1.63 ±0.03 1.65 ±0.04 1.67∗∗∗ ±0.05 1.65 ±0.04

fo rd C

ro SA T

43.3 19.00 ±1.33 19.98◦◦◦ ±1.10 16.71◦◦◦ ±0.87 15.76 ±1.24 16.97◦◦◦ ±1.04 14.62◦◦◦ ±0.93 16.64 ±0.88 17.94◦◦◦ ±0.77 15.86◦◦◦ ±0.73 15.47 ±2.74 16.01∗∗ ±2.60 14.67∗ ±2.32

Eu

Pe ts

Zero-Shot Accuracy TOPK L-TOPK (naive) L-TOPK LAC L-LAC (naive) L-LAC APS L-APS (naive) L-APS RAPS L-RAPS (naive) L-RAPS

D TD

U

CF 1

01

(a) Results with ViT-B/16.

85.9 2.00 ±0.00 2.00 ±0.00 1.63◦◦◦ ±0.17 1.20 ±0.05 1.29◦◦◦ ±0.07 1.41 ±0.62 2.32 ±0.11 2.49◦◦◦ ±0.12 2.35 ±0.15 1.97 ±0.10 2.07∗∗∗ ±0.15 1.96 ±0.11

01

7

d1

67.7 4.10 ±0.32 3.95 ±0.09 3.59∗∗∗ ±0.26 2.92 ±0.27 2.97∗∗ ±0.26 2.89∗∗ ±0.27 7.27 ±0.57 7.41 ±0.58 7.21 ±0.48 3.80 ±0.12 3.82∗ ±0.11 3.79 ±0.11

90.9 1.30 ±0.48 1.30 ±0.48 1.06 ±0.10 0.98 ±0.03 1.02∗∗∗ ±0.03 1.05 ±0.11 1.70 ±0.07 1.81∗∗∗ ±0.08 1.74 ±0.10 1.44 ±0.06 1.50◦◦◦ ±0.07 1.45 ±0.07

Fo o

N

39

32.5 9.40 ±0.52 9.56 ±0.49 8.40∗∗∗ ±0.36 7.40 ±0.31 7.87∗∗∗ ±0.40 7.24 ±0.37 8.74 ±0.34 9.22∗∗∗ ±0.40 8.57∗∗∗ ±0.36 7.87 ±0.51 8.14∗∗∗ ±0.55 7.68∗ ±0.53

SU

Eu

D

ft

79.6 4.10 ±0.57 3.70◦ ±0.47 2.78∗∗∗ ±0.19 2.03 ±0.22 2.05 ±0.24 1.97 ±0.15 3.04 ±0.12 3.04 ±0.12 3.07 ±0.10 2.88 ±0.28 2.89 ±0.26 2.80∗ ±0.22

ra

er 1 Fl ow

76.9 2.50 ±0.53 2.41 ±0.44 1.99◦◦ ±0.17 1.57 ±0.08 1.64∗∗∗ ±0.09 1.59 ±0.10 2.35 ±0.09 2.44∗∗∗ ±0.11 2.35 ±0.11 2.25 ±0.08 2.32∗∗∗ ±0.09 2.26 ±0.09

irc

rd fo St

60.3 3.50 ±0.53 2.90◦◦ ±0.15 2.79◦◦◦ ±0.15 2.46 ±0.19 2.40∗∗∗ ±0.18 2.41 ±0.14 3.23 ±0.12 3.19◦◦◦ ±0.12 3.11∗∗∗ ±0.08 3.23 ±0.37 3.19∗∗ ±0.35 3.04∗ ±0.39

A

SA T ro

Ca

ts Pe

75.1 3.40 ±0.52 3.20 ±0.35 2.63∗∗∗ ±0.23 1.94 ±0.09 2.06∗∗∗ ±0.06 1.94 ±0.09 3.81 ±0.19 3.90∗∗∗ ±0.22 3.71∗∗ ±0.20 2.92 ±0.43 2.98◦◦ ±0.45 2.88 ±0.38

an

TD

93.5 1.00 ±0.00 1.00 ±0.00 1.00 ±0.00 0.95 ±0.02 0.96∗∗∗ ±0.02 0.96 ±0.03 1.33 ±0.01 1.35∗∗∗ ±0.01 1.33∗∗ ±0.01 1.29 ±0.02 1.31∗∗∗ ±0.02 1.29∗ ±0.02

1

53.4 12.70 ±0.67 13.48∗∗∗ ±0.83 11.68∗∗∗ ±0.52 9.91 ±0.60 10.89∗∗∗ ±0.72 9.54∗∗ ±0.51 11.09 ±0.55 12.15∗∗∗ ±0.73 10.86∗∗ ±0.48 9.41 ±1.75 9.88∗∗∗ ±1.82 9.22∗∗ ±1.70

10 CF U

Zero-Shot Accuracy TOPK L-TOPK (naive) L-TOPK LAC L-LAC (naive) L-LAC APS L-APS (naive) L-APS RAPS L-RAPS (naive) L-RAPS

02

rs

(b) Results with ViT-L/14.

SU

01 Fo o

58.8 6.80 ±0.63 ∗∗∗ 6.14 ±0.61 6.15∗∗∗ ±0.63 4.82 ±0.33 4.74∗∗∗ ±0.36 4.73∗∗∗ ±0.36 10.16 ±0.98 10.04∗ ±0.97 10.05∗ ±0.98 6.26 ±0.72 6.24 ±0.74 6.25 ±0.76

d1

7 N

66.0 12.50 ±1.65 11.14◦◦◦ ±1.69 11.01∗∗∗ ±1.51 7.79 ±0.74 7.34∗∗∗ ±0.85 7.60 ±0.88 8.80 ±0.70 8.56∗ ±0.61 8.94 ±0.87 6.97 ±1.34 6.91 ±1.64 7.01 ±1.32

39

ft

17.0 34.20 ±1.93 34.53 ±1.93 30.66∗∗∗ ±1.57 28.15 ±1.57 28.82∗∗∗ ±1.65 28.40 ±1.67 29.74 ±1.47 30.75∗∗∗ ±1.63 29.56 ±1.31 27.58 ±3.31 28.91 ±3.66 27.72 ±3.31

A

St a

nf

ro Eu

D

ra

55.8 6.50 ±0.53 6.49 ±0.55 5.66∗∗∗ ±0.59 4.50 ±0.46 4.75∗∗∗ ±0.44 4.49 ±0.53 6.43 ±0.41 6.74∗∗∗ ±0.47 6.44 ±0.41 5.42 ±0.62 5.61◦◦ ±0.70 5.37∗ ±0.63

irc

or

36.1 5.60 ±0.52 ◦◦◦ 4.62 ±0.49 4.58◦◦◦ ±0.07 4.71 ±0.17 4.56∗∗∗ ±0.16 4.40∗∗∗ ±0.08 5.49 ±0.13 5.33∗∗∗ ±0.12 5.05∗∗∗ ±0.11 5.04 ±0.77 4.94∗∗∗ ±0.74 4.23∗∗∗ ±0.58

2

SA T

85.7 2.00 ±0.00 2.00 ±0.00 1.52∗∗∗ ±0.08 1.27 ±0.05 1.30∗∗∗ ±0.05 1.28 ±0.07 1.97 ±0.05 2.01∗∗∗ ±0.05 1.96 ±0.06 1.99 ±0.05 2.01◦◦ ±0.05 1.98 ±0.06

er 10

ts Pe

61.9 8.40 ±0.52 8.82◦◦ ±0.52 7.42◦◦◦ ±0.34 5.52 ±0.35 6.01∗∗∗ ±0.39 5.37∗∗ ±0.36 8.51 ±0.53 8.76∗∗∗ ±0.62 8.30∗∗ ±0.58 7.14 ±1.11 7.38∗∗ ±1.25 7.07 ±1.07

Fl ow

TD

42.8 19.90 ±1.20 21.02∗∗∗ ±1.43 18.84∗∗∗ ±1.04 17.52 ±0.97 18.63∗∗∗ ±1.13 16.91∗∗∗ ±1.01 18.37 ±0.83 19.33∗∗∗ ±0.96 17.92∗∗ ±0.82 16.22 ±1.85 16.68∗∗ ±1.76 15.45∗∗ ±1.94

1 CF 10 U

Zero-Shot Accuracy TOPK L-TOPK (naive) L-TOPK LAC L-LAC (naive) L-LAC APS L-APS (naive) L-APS RAPS L-RAPS (naive) L-RAPS

dC a

rs

(c) Results with RN50.

77.4 3.10 ±0.32 3.10 ±0.32 2.73∗∗∗ ±0.24 1.94 ±0.17 2.19∗∗∗ ±0.19 2.01 ±0.21 3.76 ±0.31 4.01∗∗∗ ±0.31 3.76 ±0.33 3.09 ±0.38 3.34◦◦ ±0.52 3.08 ±0.39

St

01 Fo o

d1

7 N

59.0 6.70 ±0.82 7.43◦◦◦ ±0.59 6.21∗∗ ±0.82 4.81 ±0.56 5.41∗∗∗ ±0.54 4.73∗ ±0.49 10.84 ±0.91 12.44◦◦◦ ±0.91 10.68 ±0.82 6.16 ±0.92 6.80∗∗ ±1.28 6.14 ±0.88

SU

ra irc

18.1 30.30 ±1.49 27.97∗∗∗ ±1.28 28.90∗∗∗ ±1.30 27.37 ±1.78 25.80∗∗∗ ±1.70 26.55∗∗ ±1.71 28.97 ±1.85 27.34∗∗∗ ±1.81 28.24∗∗ ±2.07 25.58 ±4.23 24.88∗∗ ±4.39 24.85◦ ±3.52

A

er

64.4 10.10 ±0.88 8.09∗∗∗ ±0.65 8.47∗∗∗ ±0.77 6.49 ±0.87 5.45◦◦◦ ±0.72 7.86∗∗∗ ±0.65 7.99 ±0.70 7.01∗∗∗ ±0.54 7.86 ±0.65 7.11 ±2.27 6.21◦ ±1.15 6.65 ±1.46

Fl ow

rd

63.2 4.50 ±0.53 4.39 ±0.50 3.89∗∗∗ ±0.41 2.96 ±0.27 3.10∗∗∗ ±0.25 3.06 ±0.41 4.38 ±0.23 4.61∗∗∗ ±0.23 4.38 ±0.23 3.95 ±0.35 4.06∗∗∗ ±0.37 3.91 ±0.33

an

fo

39

ft

10

Ca

SA T ro

32.8 8.10 ±0.32 7.12◦◦◦ ±0.31 6.69∗∗∗ ±0.18 7.08 ±0.10 6.98∗∗∗ ±0.09 6.64∗∗∗ ±0.09 7.46 ±0.19 7.34∗∗∗ ±0.17 6.96∗∗∗ ±0.12 5.87 ±0.89 5.71 ±0.90 5.31∗∗∗ ±1.02

Eu

Pe ts

86.9 2.00 ±0.00 1.00∗∗∗ ±0.00 1.50∗∗∗ ±0.06 1.21 ±0.03 1.17∗∗∗ ±0.03 1.23∗ ±0.05 1.86 ±0.02 1.82∗∗∗ ±0.03 1.87 ±0.01 1.85 ±0.10 1.81∗∗∗ ±0.09 1.83◦ ±0.10

D

TD

1 10

37.1 19.00 ±0.82 18.47◦ ±0.84 17.84∗∗∗ ±0.90 17.05 ±0.90 16.67∗∗ ±1.00 16.36∗∗∗ ±0.85 18.01 ±0.79 17.57∗∗ ±0.96 17.41∗∗∗ ±0.67 15.25 ±2.13 15.29 ±1.97 15.17 ±1.94

CF

61.0 6.80 ±0.63 6.83 ±0.66 5.73∗∗∗ ±0.33 4.50 ±0.39 4.82◦◦◦ ±0.44 4.55 ±0.51 8.07 ±0.37 8.64∗∗∗ ±0.39 7.75∗∗∗ ±0.35 5.39 ±0.38 5.64∗∗∗ ±0.48 5.38 ±0.41

U

Zero-Shot Accuracy TOPK L-TOPK (naive) L-TOPK LAC L-LAC (naive) L-LAC APS L-APS (naive) L-APS RAPS L-RAPS (naive) L-RAPS

2

rs

(d) Results with RN101.

80.7 3.10 ±0.32 2.76◦ ±0.41 2.62∗∗∗ ±0.38 1.76 ±0.16 1.78 ±0.17 1.83∗ ±0.19 3.36 ±0.15 3.45∗ ±0.17 3.45 ±0.29 2.81 ±0.22 2.83 ±0.22 2.79 ±0.21

TABLE II: CovGap / MCCC (see Eq. 11 and Eq. 12) averaged over 10 folds, for α = 0.1. For CovGap, lower values are better, while for MCCC, higher values are better. The best results are highlighted in bold. L- denotes local approaches (see Section II-C). Naive corresponds to the black dotted line in Fig. 1, while the methods highlighted in pink corresponds to our procedure described in Section III-B.

Fl ow er

ra

fo

N 39 7

St an

A

SU

Fo o

48.3 0.09 / 0.64 0.09 / 0.63 0.07 / 0.76 0.07 / 0.74 0.07 / 0.75 0.07 / 0.76 0.06 / 0.82 0.06 / 0.82 0.06 / 0.82 0.07 / 0.81 0.07 / 0.80 0.08 / 0.68

65.6 0.11 / 0.17 0.11 / 0.17 0.10 / 0.18 0.11 / 0.09 0.11 / 0.12 0.10 / 0.10 0.09 / 0.21 0.09 / 0.26 0.09 / 0.23 0.10 / 0.27 0.10 / 0.29 0.10 / 0.27

70.8 0.15 / 0.00 0.16 / 0.00 0.15 / 0.02 0.16 / 0.00 0.16 / 0.00 0.16 / 0.01 0.15 / 0.00 0.15 / 0.00 0.14 / 0.00 0.16 / 0.00 0.16 / 0.00 0.16 / 0.00

24.9 0.12 / 0.00 0.11 / 0.00 0.12 / 0.00 0.13 / 0.00 0.13 / 0.00 0.12 / 0.00 0.13 / 0.00 0.12 / 0.00 0.12 / 0.00 0.13 / 0.00 0.13 / 0.00 0.13 / 0.00

62.6 0.09 / 0.07 0.09 / 0.06 0.09 / 0.06 0.09 / 0.06 0.09 / 0.07 0.09 / 0.06 0.08 / 0.21 0.08 / 0.22 0.08 / 0.21 0.08 / 0.08 0.08 / 0.08 0.08 / 0.08

85.9 0.05 / 0.54 0.05 / 0.54 0.05 / 0.51 0.05 / 0.44 0.05 / 0.51 0.05 / 0.45 0.07 / 0.72 0.07 / 0.75 0.07 / 0.72 0.06 / 0.72 0.06 / 0.74 0.06 / 0.72

irc

d1 01

oS AT Eu r

89.1 0.09 / 0.44 0.09 / 0.36 0.08 / 0.41 0.09 / 0.11 0.09 / 0.13 0.08 / 0.29 0.08 / 0.90 0.08 / 0.91 0.08 / 0.90 0.09 / 0.69 0.09 / 0.70 0.09 / 0.70

ft

ts Pe

10 2

D TD

43.3 0.12 / 0.13 0.12 / 0.17 0.12 / 0.21 0.13 / 0.10 0.13 / 0.14 0.12 / 0.19 0.12 / 0.14 0.12 / 0.17 0.12 / 0.19 0.13 / 0.12 0.12 / 0.13 0.12 / 0.11

10 1 CF

67.5 0.12 / 0.03 0.12 / 0.05 0.12 / 0.07 0.12 / 0.01 0.11 / 0.02 0.12 / 0.02 0.11 / 0.05 0.11 / 0.05 0.11 / 0.05 0.11 / 0.04 0.11 / 0.06 0.11 / 0.04

U

Zero-Shot Accuracy TOPK L-TOPK (naive) L-TOPK LAC L-LAC (naive) L-LAC APS L-APS (naive) L-APS RAPS L-RAPS (naive) L-RAPS

rd Ca

rs

(a) Results with ViT-B/16.

Fl ow er

ra f

N 39

A

SU

Fo o

60.3 0.08 / 0.78 0.09 / 0.70 0.08 / 0.74 0.08 / 0.68 0.08 / 0.67 0.07 / 0.73 0.07 / 0.85 0.07 / 0.84 0.07 / 0.86 0.07 / 0.84 0.07 / 0.84 0.07 / 0.78

76.9 0.11 / 0.16 0.11 / 0.16 0.11 / 0.13 0.11 / 0.06 0.10 / 0.10 0.10 / 0.11 0.09 / 0.42 0.09 / 0.45 0.09 / 0.43 0.09 / 0.27 0.10 / 0.28 0.09 / 0.28

79.6 0.14 / 0.00 0.15 / 0.00 0.14 / 0.00 0.15 / 0.00 0.15 / 0.00 0.14 / 0.00 0.13 / 0.00 0.13 / 0.00 0.12 / 0.00 0.13 / 0.00 0.13 / 0.00 0.13 / 0.00

32.5 0.08 / 0.21 0.08 / 0.22 0.08 / 0.20 0.09 / 0.16 0.09 / 0.18 0.09 / 0.20 0.09 / 0.10 0.09 / 0.13 0.09 / 0.15 0.09 / 0.11 0.09 / 0.14 0.09 / 0.13

67.7 0.09 / 0.07 0.09 / 0.06 0.09 / 0.05 0.09 / 0.13 0.09 / 0.14 0.09 / 0.13 0.08 / 0.27 0.08 / 0.28 0.08 / 0.29 0.08 / 0.15 0.08 / 0.15 0.08 / 0.15

90.9 0.05 / 0.62 0.05 / 0.62 0.05 / 0.54 0.05 / 0.49 0.05 / 0.58 0.05 / 0.50 0.07 / 0.90 0.08 / 0.92 0.07 / 0.90 0.06 / 0.88 0.07 / 0.89 0.06 / 0.88

d1

7

t irc

01

2

fo St an

93.5 0.08 / 0.47 0.08 / 0.47 0.08 / 0.47 0.09 / 0.24 0.09 / 0.28 0.08 / 0.32 0.09 / 0.92 0.09 / 0.92 0.09 / 0.92 0.08 / 0.88 0.08 / 0.88 0.08 / 0.88

10

rs oS AT Eu r

75.1 0.11 / 0.08 0.11 / 0.06 0.11 / 0.10 0.12 / 0.01 0.11 / 0.02 0.12 / 0.05 0.10 / 0.10 0.10 / 0.10 0.10 / 0.12 0.10 / 0.13 0.10 / 0.13 0.10 / 0.10

D

CF 10 U

Zero-Shot Accuracy TOPK L-TOPK (naive) L-TOPK LAC L-LAC (naive) L-LAC APS L-APS (naive) L-APS RAPS L-RAPS (naive) L-RAPS

rd Ca

ts Pe

53.4 0.10 / 0.08 0.10 / 0.12 0.10 / 0.21 0.10 / 0.04 0.10 / 0.07 0.10 / 0.07 0.09 / 0.07 0.09 / 0.09 0.09 / 0.11 0.10 / 0.05 0.10 / 0.06 0.11 / 0.08

1

TD

(b) Results with ViT-L/14.

01

N 39 SU

Fo o

17.0 0.11 / 0.00 0.11 / 0.00 0.10 / 0.00 0.11 / 0.01 0.11 / 0.01 0.11 / 0.01 0.11 / 0.00 0.11 / 0.01 0.11 / 0.00 0.11 / 0.00 0.11 / 0.00 0.12 / 0.00

58.8 0.08 / 0.03 0.08 / 0.03 0.08 / 0.03 0.08 / 0.02 0.08 / 0.03 0.08 / 0.03 0.08 / 0.09 0.08 / 0.09 0.08 / 0.09 0.08 / 0.03 0.08 / 0.03 0.08 / 0.03

77.4 0.05 / 0.70 0.05 / 0.70 0.05 / 0.68 0.05 / 0.66 0.05 / 0.70 0.05 / 0.66 0.05 / 0.81 0.06 / 0.83 0.05 / 0.81 0.05 / 0.75 0.05 / 0.76 0.05 / 0.75

d1

ra irc A

66.0 0.14 / 0.00 0.15 / 0.00 0.14 / 0.01 0.14 / 0.00 0.15 / 0.00 0.14 / 0.00 0.14 / 0.00 0.14 / 0.00 0.14 / 0.01 0.15 / 0.00 0.15 / 0.00 0.15 / 0.00

ft

10 er

7

2

ar Fl ow

Eu r

D

CF

55.8 0.10 / 0.08 0.10 / 0.08 0.10 / 0.08 0.10 / 0.08 0.10 / 0.09 0.10 / 0.08 0.09 / 0.19 0.09 / 0.21 0.09 / 0.19 0.09 / 0.12 0.09 / 0.12 0.09 / 0.11

dC

36.1 0.08 / 0.81 0.11 / 0.68 0.08 / 0.76 0.09 / 0.70 0.09 / 0.68 0.07 / 0.75 0.06 / 0.83 0.06 / 0.81 0.06 / 0.83 0.08 / 0.72 0.09 / 0.71 0.12 / 0.52

or

oS AT

85.7 0.07 / 0.48 0.07 / 0.48 0.06 / 0.48 0.07 / 0.35 0.07 / 0.39 0.07 / 0.42 0.07 / 0.90 0.07 / 0.90 0.07 / 0.90 0.07 / 0.81 0.08 / 0.81 0.07 / 0.81

nf

ts Pe

42.8 0.12 / 0.03 0.12 / 0.04 0.11 / 0.14 0.12 / 0.09 0.11 / 0.13 0.11 / 0.19 0.12 / 0.10 0.11 / 0.13 0.11 / 0.18 0.12 / 0.05 0.12 / 0.06 0.12 / 0.06

U

Zero-Shot Accuracy TOPK L-TOPK (naive) L-TOPK LAC L-LAC (naive) L-LAC APS L-APS (naive) L-APS RAPS L-RAPS (naive) L-RAPS

St a

TD

61.9 0.12 / 0.02 0.11 / 0.03 0.12 / 0.02 0.12 / 0.02 0.11 / 0.03 0.12 / 0.03 0.11 / 0.08 0.11 / 0.08 0.11 / 0.08 0.11 / 0.04 0.11 / 0.04 0.11 / 0.04

1 10

s

(c) Results with RN50.

ra ft

39 7 N

d1 0

A

SU

Fo o

18.1 0.11 / 0.00 0.12 / 0.00 0.12 / 0.01 0.13 / 0.00 0.13 / 0.00 0.12 / 0.01 0.13 / 0.00 0.13 / 0.00 0.12 / 0.00 0.13 / 0.00 0.13 / 0.00 0.14 / 0.00

59.0 0.09 / 0.01 0.08 / 0.02 0.09 / 0.01 0.09 / 0.01 0.08 / 0.02 0.09 / 0.01 0.08 / 0.07 0.08 / 0.09 0.08 / 0.07 0.08 / 0.02 0.08 / 0.02 0.08 / 0.02

80.7 0.05 / 0.52 0.06 / 0.50 0.05 / 0.51 0.05 / 0.50 0.05 / 0.51 0.05 / 0.53 0.06 / 0.75 0.06 / 0.76 0.06 / 0.75 0.06 / 0.61 0.06 / 0.61 0.06 / 0.61

1

2 Fl ow er 10

64.4 0.14 / 0.00 0.15 / 0.00 0.14 / 0.01 0.15 / 0.00 0.15 / 0.00 0.13 / 0.03 0.14 / 0.02 0.14 / 0.01 0.13 / 0.03 0.14 / 0.00 0.15 / 0.00 0.14 / 0.00

irc

rs 10

63.2 0.10 / 0.00 0.10 / 0.00 0.09 / 0.00 0.10 / 0.00 0.10 / 0.00 0.10 / 0.01 0.09 / 0.00 0.09 / 0.00 0.09 / 0.00 0.09 / 0.00 0.09 / 0.00 0.09 / 0.00

dC a

32.8 0.11 / 0.61 0.13 / 0.48 0.09 / 0.67 0.10 / 0.64 0.10 / 0.62 0.09 / 0.63 0.09 / 0.73 0.09 / 0.72 0.08 / 0.72 0.15 / 0.45 0.15 / 0.43 0.18 / 0.39

or

Eu ro SA T

86.9 0.09 / 0.11 0.12 / 0.03 0.08 / 0.13 0.09 / 0.04 0.09 / 0.03 0.08 / 0.15 0.09 / 0.64 0.09 / 0.62 0.09 / 0.68 0.09 / 0.37 0.09 / 0.37 0.09 / 0.38

nf

ts Pe

37.1 0.11 / 0.07 0.11 / 0.06 0.11 / 0.19 0.11 / 0.15 0.11 / 0.14 0.11 / 0.22 0.11 / 0.19 0.11 / 0.18 0.11 / 0.28 0.12 / 0.08 0.12 / 0.08 0.12 / 0.11

U

Zero-Shot Accuracy TOPK L-TOPK (naive) L-TOPK LAC L-LAC (naive) L-LAC APS L-APS (naive) L-APS RAPS L-RAPS (naive) L-RAPS

St a

D TD

61.0 0.12 / 0.00 0.12 / 0.00 0.12 / 0.00 0.12 / 0.01 0.11 / 0.01 0.12 / 0.01 0.10 / 0.02 0.10 / 0.03 0.10 / 0.03 0.12 / 0.00 0.11 / 0.00 0.12 / 0.00

1 CF

(d) Results with RN101.

Localized Conformal Prediction for Image Classification with Vision-Language Models Supplementary Materials A. DATASET DETAILS TABLE A-I: Additional information on the datasets.

Number of samples

Dataset name UCF101 DTD Pets EuroSAT StanfordCars Flower102 Aircraft SUN397 Food101

Classes 101 47 37 10 196 102 100 397 101

UCF101 100

100

50

50 0

Task Action classification Texture classification Pet breed classification Satellite image classification Car model classification Flower classification Aircraft model classification Scene classification Food classification

DTD

150

0

20

3000

Number of samples

Samples 13320 5640 7349 27000 16185 8189 10000 39700 101000

40

60

80

EuroSAT

100

0

0

10

20

30

StanfordCars

40

200 150 100 50 0

2000

100

200

1000

50

100

0

Number of samples

100 75 50 25 0

0

0

2

20

4

Aircraft

40

60

Class index

6

0

8

80

100

100 75 50 25 0

0

0

25

50

50

75

100 125 150 175 200

SUN397

100 150 200 250 300 350 400

Class index

0 1000 750 500 250 0

Pets

0

5

10

0

20

0

20

15

20

30

35

40

60

80

100

40

60

80

100

Flower102

Food101

Class index

25

Fig. A-I: Labels distribution for each dataset. Note that our calibration sets are uniformly drawn from the dataset, therefore conserving the same distribution.

Record · ID 324918 · SHA-256 8fbbc9bb07cd9235
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.