REVIEW 5 major objections 4 minor 57 references
Interpretable Zero-Shot Learning with Locally-Aligned Vision-Language Model
T0 review · 5 major / 4 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read This paper claims that zero-shot classification improves and becomes interpretable when local image regions are aligned with LLM-generated attributes through an optimal transport plan, with no extra training.
desk verdict LaZSL is a plausible training-free recipe for interpretable ZSL, but the paper under-specifies the OT solver and never shows the transport plan is actually non-uniform, leaving open that the gains are just multi-crop ensembling. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the optimal transport plan $T$ computed with the Sinkhorn algorithm between two discrete distributions: the visual set formed by random multi-scale crops of the query image and the semantic set formed by LLM-generated attributes of a candidate class. Three design choices carry the argument: a vision-selection step that zeroes out the probability mass of crops whose cosine similarity to the global image embedding falls below the average (Eqs. 6-9), a hybrid cost matrix that linearly blends region-attribute similarity with global image-attribute similarity (Eq. 10), and the Frobenius-inner-product scoring of the final plan against the same hybrid similarity (Eqs. 15-16). These components together let the model align fine-grained visual evidence with specific attributes while retaining the global context of the frozen CLIP encoder.
What would settle it
A concrete test: replace the random-crop visual set with fixed grid patches, or with crops taken from a region known to contain the attribute, and re-run LaZSL. If accuracy does not drop when the crops are decorrelated from attribute locations, then the OT alignment is not actually using local evidence; alternatively, if randomly shuffling the rows of the cost matrix destroys the gain, the specific alignment is doing the work.
Extended reading notes
Core claim
The paper's central claim is that local visual-semantic alignment, realized as an optimal transport plan between a set of random multi-scale image crops and a set of LLM-generated attribute descriptions, yields better zero-shot classification than global image-text matching while also making predictions explainable. For each class, LaZSL builds a semantic set of attributes and a visual set of cropped regions, filters out regions that look unrelated to the global image, and solves a Sinkhorn-regularized optimal transport problem whose cost matrix mixes region-attribute similarity with global image-attribute similarity. The resulting transport plan provides both a per-region-to-attribute correspondence, which serves as the interpretable evidence, and a category score via a Frobenius inner product with the hybrid similarity. The paper reports consistent gains over DCLIP, CuPL, and WaffleCLIP across three CLIP backbones, and improved average accuracy on ImageNet domain-shift benchmarks, including a large gain on ImageNet-A.
Load-bearing premise
The method assumes that random multi-scale crops, after being filtered by similarity to the whole image, contain the local visual evidence described by the LLM-generated attributes, so that the optimal transport plan reflects a true visual-semantic correspondence rather than noise.
Editorial extensions
If this is right
- LaZSL should allow CLIP-based zero-shot classifiers to show which attribute of a predicted class is supported by which image region, giving a per-prediction explanation without any training.
- Because the method applies to any frozen VLM with patch-level visual features and an attribute generator, interpretability gains can transfer to newer backbones without retraining.
- The domain-generalization improvement, especially on ImageNet-A, suggests that attribute-region alignment is more robust to natural distribution shift than global prompt similarity.
- Since no training is involved, LaZSL can be deployed on new classes simply by generating attributes with an LLM, keeping the same cost profile as description-based baselines plus a small optimal-transport overhead.
Reading between the lines
- The paper does not directly verify that the regions selected by the optimal transport plan actually contain the object parts named by the attributes; a dedicated attribution study comparing OT-selected regions with human-annotated part locations would test whether the interpretability is causal or merely correlational.
- The Sinkhorn regularization and random-crop sampling introduce stochasticity; averaging over multiple crops or seeds could further stabilize accuracy and offers a low-cost variance-reduction extension.
- The hybrid coefficient $\theta = 0.8$ is fixed across all datasets; an adaptive $\theta$ per dataset or per class might yield further gains, especially on fine-grained datasets where local information dominates.
- The method's dependence on LLM attribute quality is acknowledged as a limitation; a filtering mechanism that scores attributes by their transport contribution could remove noisy descriptions and potentially improve both accuracy and interpretability.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes LaZSL, a training-free interpretable zero-shot learning method built on CLIP. It constructs a semantic set of LLM-generated attributes per class and a visual set of random multi-scale crops per image, filters crops by similarity to the global image embedding, computes a Sinkhorn optimal-transport plan between filtered local visual features and attribute features, and scores each class with a hybrid local-global Frobenius inner product. The authors report accuracy gains over DCLIP, WaffleCLIP, CuPL, and several prompt-learning baselines on five classification benchmarks and four ImageNet variants, plus qualitative examples intended to show attribute-based interpretability.
Significance. If the reported results are taken at face value, the paper offers a useful training-free way to obtain attribute-level explanations from CLIP while improving average accuracy, and it ships code and a relatively broad evaluation across nine datasets. The core derivation is straightforward and the component ablations are directionally consistent. However, the evaluation currently has load-bearing weaknesses: hyperparameters are selected on the same test benchmarks used in the headline tables, the entropic OT parameters are never reported, the ablations do not isolate local semantic alignment from multi-crop ensembling, and there is no direct verification that selected crops contain the evidence described by the attributes. These issues prevent the paper from fully establishing its central claim that locally-aligned OT, rather than ensembling or test-set tuning, drives the improvements.
major comments (5)
- [Section 4.5, Tables 1–2] Hyperparameter selection is performed on the same benchmarks used for the headline results. Figure 5 chooses α and θ by evaluating accuracy on CUB and ImageNet, and those same two datasets appear in Tables 1 and 2 with the final accuracy reported. This means the gains over DCLIP (e.g., +3.8 on CUB in Table 1) are partly a function of test-set tuning, so the central accuracy claim is not evaluated cleanly. Please fix α, θ, N, and β to predetermined values, tune on held-out validation splits, or explicitly state which datasets were used for tuning; if tuning was done on the test benchmarks, the comparisons should be re-run with settings selected without access to those test labels.
- [Section 3.2, Eq. (14)] The entropic regularization λ and the number of Sinkhorn iterations k are never reported. Equation (14) defines M = exp(−C*/λ), so if λ is large the OT plan T collapses toward the product of the uniform marginals and Eq. (15) becomes a multi-crop average of attribute similarities. In that regime the method is indistinguishable from random-crop ensembling with global hybrid features. The qualitative evidence in Fig. 3 is consistent with this worry: the displayed attribute scores are nearly identical (about 0.067). Please report λ and k, measure the sharpness of T (e.g., mean maximum entry or the effective number of matches), and add an ablation that replaces the OT plan with simple averaging over the same filtered crops.
- [Table 3, Ablation Study] The ablation study only adds components cumulatively relative to DCLIP, so it does not establish the causal role of local visual-semantic alignment. There is no control that keeps the OT pipeline but replaces LLM attributes with class-name embeddings, and no control that replaces OT with average pooling over the same filtered crops. Without these controls, the gains in Table 3 could come from multi-crop ensembling or the hybrid global term rather than from aligning local regions with attributes. Please add the missing controls, including a uniform-plan variant of Eq. (15).
- [Section 3.1, Eqs. (6)–(8)] The method assumes that random multi-scale crops, after filtering by similarity to the global image embedding, contain the local evidence described by the LLM attributes. This assumption is not directly verified. Please provide quantitative evidence that selected regions correspond to the attributes used for scoring, for example by measuring region-attribute retrieval precision on a subset with part annotations or by visualizing which crops receive high OT mass for a given attribute. Without such verification, the OT plan may be adding noise rather than signal, which would undermine the interpretability and alignment claims.
- [Tables 1–2] Tables 1 and 2 report single accuracy numbers with no error bars or repeated trials, while several claimed improvements are small (e.g., +0.2 and +0.5 points on Food101 and Oxford Pets in Table 1) and the largest domain-generalization gain is concentrated in ImageNet-A (+6.0 over CuPL in Table 2). Please report mean ± std over at least three random-crop or random-seed runs. In addition, the provenance of the SaLS baseline in Table 2 should be clarified: reference [32] in the bibliography is a duplicate of reference [31] and does not correspond to the SaLS method cited in the table.
minor comments (4)
- [Section 3.2, Eqs. (10) and (16)] The notation for C*_i and sim*_i mixes vector and matrix expressions; please clarify the dimensions and broadcasting of the global term pg⊤Qy so the hybrid cost and similarity are unambiguous.
- [Figure 1] There are typos in the figure: 'LAZSL' should be 'LaZSL' and 'bely' should be 'belly'.
- [Table 2, footnote] The footnote describing the training and attribute markers is incomplete: the sentence 'Methods take the source data for training marked with' cuts off, and the meaning of the quoted and percent symbols should be stated explicitly.
- [Section 5, Limitations] The Limitations paragraph correctly notes dependence on LLM-generated attribute quality, but the paper does not quantify robustness to attribute noise. Please add an analysis that perturbs or subsamples attributes to show how sensitive the reported accuracy and interpretability are to attribute quality.
Circularity Check
Core LaZSL scoring is not circular by construction, but the headline results are partly tuned because α and θ are selected on the same CUB and ImageNet test benchmarks in Sec. 4.5.
-
fitted input called prediction
[Section 4.5 (Hyper-Parameter Analysis), Fig. 5; implementation setting θ=0.8 and α=0.6; reported in Tables 1-2.]
"As can be seen from Fig. 5(a)(b), LaZSL is not sensitive to α, and it achieves best performances on all datasets when α is set to 0.6... Accordingly, we experimentally set the α = 0.6 for all datasets. ... Based on our experiments, we set θ = 0.8 to fuse key local visual features with a few global features in LaZSL."
The method's two free hyperparameters are chosen by maximizing accuracy on the same CUB and ImageNet test sets used to report its headline results (Tables 1-2). The phrase 'achieves best performances' refers to the selection criterion itself, so the reported accuracy is not an independent evaluation of LaZSL: it is tuned to those benchmarks. This is a partial fit-to-evaluation rather than a collapse of Eq. 15 into the baseline, so it raises the circularity score without making the whole derivation circular.
full rationale
The central scoring chain is internally derived, not defined in terms of its own output: attributes are generated externally by GPT-3 following DCLIP (Sec. 3.1), visual regions are random crops (Eq. 2), and the category score ψ_y = <T, sim*>_F (Eq. 15) is a Frobenius inner product of an OT plan with a hybrid similarity matrix; none of these quantities by construction equals the ground-truth label or the DCLIP baseline. The OT machinery and vision selection are therefore not circular in the self-definitional sense. The main circularity concern is test-set hyperparameter selection in Sec. 4.5, where α=0.6 and θ=0.8 are chosen by looking at accuracy on CUB and ImageNet and then the same numbers are reported as results. That is a fitted-input issue and warrants a moderate score. Two further concerns are verification gaps rather than circularity: the Sinkhorn entropy λ and iteration count k in Eqs. 11-14 are never specified, so the sharpness of T is uncontrolled, and Fig. 3 shows nearly flat attribute scores (about 0.067), consistent with a dispersive plan that degenerates toward multi-crop averaging. These gaps weaken the causal claim that OT alignment drives the gains, but they do not make the derivation equivalent to its inputs. The paper's own Limitations section acknowledges dependence on LLM attribute quality but does not introduce a circular step.
Assumptions & free parameters
free parameters (6)
- α (crop scale lower bound) =
0.6
- β (crop scale upper bound) =
not reported
- θ (hybrid coefficient) =
0.8
- N (number of crops) =
60-90
- λ (Sinkhorn entropic regularization) =
not reported
- Sinkhorn iterations k =
not reported
assumptions (5)
- domain assumption CLIP embeddings of image crops and attribute text are comparable in cosine space
- domain assumption LLM-generated attributes are relevant and descriptive for each class
- domain assumption Random multi-scale crops filtered by global-similarity threshold contain the attribute evidence
- standard math Sinkhorn algorithm yields a stable and meaningful OT plan
- ad hoc to paper Uniform marginal on attributes is a sensible prior
Cite this review
Pith. "Pith review of Interpretable Zero-Shot Learning with Locally-Aligned Vision-Language Model." pith.science (2026). https://pith.science/paper/QUUU6NTV
@misc{pith2026250623822,
author = {Pith},
title = {Pith review of: Interpretable Zero-Shot Learning with Locally-Aligned Vision-Language Model},
year = {2026},
howpublished = {\url{https://pith.science/paper/QUUU6NTV}},
note = {Machine review of arXiv:2506.23822}
}
read the original abstract
Large-scale vision-language models (VLMs), such as CLIP, have achieved remarkable success in zero-shot learning (ZSL) by leveraging large-scale visual-text pair datasets. However, these methods often lack interpretability, as they compute the similarity between an entire query image and the embedded category words, making it difficult to explain their predictions. One approach to address this issue is to develop interpretable models by integrating language, where classifiers are built using discrete attributes, similar to human perception. This introduces a new challenge: how to effectively align local visual features with corresponding attributes based on pre-trained VLMs. To tackle this, we propose LaZSL, a locally-aligned vision-language model for interpretable ZSL. LaZSL employs local visual-semantic alignment via optimal transport to perform interaction between visual regions and their associated attributes, facilitating effective alignment and providing interpretable similarity without the need for additional training. Extensive experiments demonstrate that our method offers several advantages, including enhanced interpretability, improved accuracy, and strong domain generalization. Codes available at: https://github.com/shiming-chen/LaZSL.
Figures
Figures from the paper (2 more)
Reference graph
Works this paper leans on
-
[32]
Robust calibration of large vision- language adapters
Balamurali Murugesan, Julio Silva-Rodr ´ıguez, Ismail Ben Ayed, and Jose Dolz. Robust calibration of large vision- language adapters. In ECCV, pages 147–165, 2024. 7
work page 2024
-
[31]
Robust calibration of large vision- language adapters
Balamurali Murugesan, Julio Silva-Rodr ´ıguez, Ismail Ben Ayed, and Jos ´e Dolz. Robust calibration of large vision- language adapters. In ECCV, 2024. 1, 3
work page 2024
-
[1]
Label-embedding for image classification
Zeynep Akata, Florent Perronnin, Za ¨ıd Harchaoui, and Cordelia Schmid. Label-embedding for image classification. IEEE Trans. Pattern Anal. Mach. Intell. , 38(7):1425–1438,
-
[2]
Wasserstein generative adversarial networks
Mart ´ın Arjovsky, Soumith Chintala, and L ´eon Bottou. Wasserstein generative adversarial networks. InICML, pages 214–223, 2017. 3
work page 2017
-
[3]
Food-101 - mining discriminative components with random forests
Lukas Bossard, Matthieu Guillaumin, and Luc Van Gool. Food-101 - mining discriminative components with random forests. In ECCV, pages 446–461, 2014. 5
work page 2014
-
[4]
PLOT: prompt learning with optimal transport for vision-language models
Guangyi Chen, Weiran Yao, Xiangchen Song, Xinyue Li, Yongming Rao, and Kun Zhang. PLOT: prompt learning with optimal transport for vision-language models. In ICLR,
-
[5]
Hsva: Hi- erarchical semantic-visual adaptation for zero-shot learning
Shiming Chen, Guo-Sen Xie, Yang Yang Liu, Qinmu Peng, Baigui Sun, Hao Li, Xinge You, and Ling Shao. Hsva: Hi- erarchical semantic-visual adaptation for zero-shot learning. In NeurIPS, 2021. 2
work page 2021
-
[6]
MSDN: mutually semantic distillation network for zero-shot learn- ing
Shiming Chen, Ziming Hong, Guo-Sen Xie, Wenhan Yang, Qinmu Peng, Kai Wang, Jian Zhao, and Xinge You. MSDN: mutually semantic distillation network for zero-shot learn- ing. In CVPR, pages 7602–7611, 2022. 2
work page 2022
Show all 57 references
-
[7]
Transzero++: Cross attribute-guided transformer for zero-shot learning
Shiming Chen, Ziming Hong, Wenjin Hou, Guo-Sen Xie, Yibing Song, Jian Zhao, Xinge You, Shuicheng Yan, and Ling Shao. Transzero++: Cross attribute-guided transformer for zero-shot learning. IEEE Trans. Pattern Anal. Mach. In- tell., 45(11):12844–12861, 2023. 2
2023
-
[8]
Evolving semantic prototype improves generative zero-shot learning
Shiming Chen, Wen Qing Hou, Ziming Hong, Xiaohan Ding, Yibing Song, Xinge You, Tongliang Liu, and Kun Zhang. Evolving semantic prototype improves generative zero-shot learning. In ICML, 2023. 2
2023
-
[9]
Khan, and Fa- had Shahbaz Khan
Shiming Chen, Wenjin Hou, Salman H. Khan, and Fa- had Shahbaz Khan. Progressive semantic-guided vision transformer for zero-shot learning. In CVPR, pages 23964– 23974, 2024. 2
2024
-
[10]
Khan, and Fa- had Shahbaz Khan
Shiming Chen, Dingjie Fu, Salman H. Khan, and Fa- had Shahbaz Khan. Genzsl: Generative zero-shot learning via inductive variational autoencoder. 2025. 2
2025
-
[11]
Semantics-conditioned generative zero-shot learning via fea- ture refinement
Shiming Chen, Ziming Hong, Xinge You, and Ling Shao. Semantics-conditioned generative zero-shot learning via fea- ture refinement. International Journal of Computer Vision ,
-
[12]
Evolving interpretable visual classifiers with large language models
Mia Chiquier, Utkarsh Mall, and Carl V ondrick. Evolving interpretable visual classifiers with large language models. In ECCV, 2024. 1, 3
2024
-
[13]
Sinkhorn distances: Lightspeed computation of optimal transport
Marco Cuturi. Sinkhorn distances: Lightspeed computation of optimal transport. In NeurIPS, pages 2292–2300, 2013. 5
2013
-
[14]
Imagenet: A large-scale hierarchical image database
Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In CVPR, pages 248–255, 2009. 5
2009
-
[15]
Image2sentence based asymmetrical zero-shot composed image retrieval
Yongchao Du, Min Wang, Wen gang Zhou, Shuping Hui, and Houqiang Li. Image2sentence based asymmetrical zero-shot composed image retrieval. In ICLR, 2024. 1
2024
-
[16]
Improving clip training with language rewrites
Lijie Fan, Dilip Krishnan, Phillip Isola, Dina Katabi, and Yonglong Tian. Improving clip training with language rewrites. In NeurIPS, 2023. 1, 3
2023
-
[17]
Diverse data augmentation with diffusions for effective test-time prompt tuning
Chun-Mei Feng, Kai Yu, Yong Liu, Salman Khan, and Wangmeng Zuo. Diverse data augmentation with diffusions for effective test-time prompt tuning. In ICCV, pages 2704– 2714, 2023. 1
2023
-
[18]
Clip-adapter: Better vision-language models with feature adapters
Peng Gao, Shijie Geng, Renrui Zhang, Teli Ma, Rongyao Fang, Yongfeng Zhang, Hongsheng Li, and Yu Jiao Qiao. Clip-adapter: Better vision-language models with feature adapters. International Journal of Computer Vision , 2023. 1
2023
-
[19]
The many faces of robustness: A criti- cal analysis of out-of-distribution generalization
Dan Hendrycks, Steven Basart, Norman Mu, Saurav Kada- vath, Frank Wang, Evan Dorundo, Rahul Desai, Tyler Zhu, Samyak Parajuli, Mike Guo, Dawn Song, Jacob Steinhardt, and Justin Gilmer. The many faces of robustness: A criti- cal analysis of out-of-distribution generalization. I...
2021
-
[20]
Natural adversarial examples
Dan Hendrycks, Kevin Zhao, Steven Basart, Jacob Stein- hardt, and Dawn Song. Natural adversarial examples. In CVPR, pages 15262–15271, 2021. 5
2021
-
[21]
Fine-grained generalized zero-shot learning via dense attribute-based attention
Dat Huynh and Ehsan Elhamifar. Fine-grained generalized zero-shot learning via dense attribute-based attention. In CVPR, pages 4482–4492, 2020. 2
2020
-
[22]
Le, Yun-Hsuan Sung, Zhen Li, and Tom Duerig
Chao Jia, Yinfei Yang, Ye Xia, Yi-Ting Chen, Zarana Parekh, Hieu Pham, Quoc V . Le, Yun-Hsuan Sung, Zhen Li, and Tom Duerig. Scaling up visual and vision-language representation learning with noisy text supervision. In ICML, pages 4904– 4916, 2021. 2
2021
-
[23]
Multi- modal classifiers for open-vocabulary object detection
Prannay Kaul, Weidi Xie, and Andrew Zisserman. Multi- modal classifiers for open-vocabulary object detection. In ICML, 2023. 1
2023
-
[24]
Khan, and Fahad Shahbaz Khan
Muhammad Uzair Khattak, Hanoona Abdul Rasheed, Muhammad Maaz, Salman H. Khan, and Fahad Shahbaz Khan. Maple: Multi-modal prompt learning. InCVPR, pages 19113–19122, 2023. 1, 3, 5, 6, 7
2023
-
[25]
Kolkin, Jason Salavon, and Gregory Shakhnarovich
Nicholas I. Kolkin, Jason Salavon, and Gregory Shakhnarovich. Style transfer by relaxed optimal transport and self-similarity. In CVPR, pages 10051–10060, 2019. 3
2019
-
[26]
Co-clustering through optimal transport
Charlotte Laclau, Ievgen Redko, Basarab Matei, Youn `es Bennani, and Vincent Brault. Co-clustering through optimal transport. In ICML, pages 1955–1964, 2017. 3
1955
-
[27]
Visual-text cross alignment: Refining the similarity score in vision-language models
Jinhao Li, Haopeng Li, Sarah Monazam Erfani, Lei Feng, James Bailey, and Feng Liu. Visual-text cross alignment: Refining the similarity score in vision-language models. In ICML, 2024. 3
2024
-
[28]
Patchct: Align- ing patch set and label set with conditional transport for multi-label image classification
Miaoge Li, Dongsheng Wang, Xinyang Liu, Zequn Zeng, Ruiying Lu, Bo Chen, and Mingyuan Zhou. Patchct: Align- ing patch set and label set with conditional transport for multi-label image classification. In ICCV, pages 15302– 15312, 2023. 2, 3
2023
-
[29]
Progressive semantic-visual mutual adaption for generalized zero-shot learning
Man Liu, Feng Li, Chunjie Zhang, Yunchao Wei, Huihui Bai, and Yao Zhao. Progressive semantic-visual mutual adaption for generalized zero-shot learning. In CVPR, pages 15337– 15346, 2023. 2
2023
-
[30]
Visual classification via description from large language models
Sachit Menon and Carl V ondrick. Visual classification via description from large language models. In ICLR, 2023. 1, 2, 3, 4, 5, 6, 7, 8, 9
2023
-
[33]
I2dformer+: Learning image to document summary attention for zero-shot image classifi- cation
Muhammad Ferjad Naeem, Yongqin Xian, Luc Van Gool, and Federico Tombari. I2dformer+: Learning image to document summary attention for zero-shot image classifi- cation. Internal Journal of Computer Vision , 132(9):3806– 3822, 2024. 2
2024
-
[34]
Pomerleau, Geoffrey E
Mark Palatucci, D. Pomerleau, Geoffrey E. Hinton, and Tom Michael Mitchell. Zero-shot learning with semantic output codes. In NeurIPS, pages 1410–1418, 2009. 1, 2
2009
-
[35]
Parkhi, Andrea Vedaldi, Andrew Zisserman, and C
Omkar M. Parkhi, Andrea Vedaldi, Andrew Zisserman, and C. V . Jawahar. Cats and dogs. In CVPR, pages 3498–3505,
-
[36]
Computational optimal transport
Gabriel Peyr ´e and Marco Cuturi. Computational optimal transport. Found. Trends Mach. Learn. , 11(5-6):355–607,
-
[37]
What does a platypus look like? generating customized prompts for zero- shot image classification
Sarah Pratt, Rosanne Liu, and Ali Farhadi. What does a platypus look like? generating customized prompts for zero- shot image classification. In ICCV, pages 15645–15655,
-
[38]
Pratt, Ian Covert, Rosanne Liu, and Ali Farhadi
Sarah M. Pratt, Ian Covert, Rosanne Liu, and Ali Farhadi. What does a platypus look like? generating customized prompts for zero-shot image classification. In ICCV, pages 15645–15655, 2023. 7, 9
2023
-
[39]
Proapo: Pro- gressively automatic prompt optimization for visual classifi- cation
Xiangyan Qu, Gaopeng Gou, Jiamin Zhuang, Jing Yu, Kun Song, Qihao Wang, Yili Li, and Gang Xiong. Proapo: Pro- gressively automatic prompt optimization for visual classifi- cation. In CVPR, 2025. 6
2025
-
[40]
Learning transferable visual models from natural language supervision
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, Gretchen Krueger, and Ilya Sutskever. Learning transferable visual models from natural language supervision. In ICML, pages 8748–...
2021
-
[41]
Do imagenet classifiers generalize to im- agenet? In ICML, pages 5389–5400, 2019
Benjamin Recht, Rebecca Roelofs, Ludwig Schmidt, and Vaishaal Shankar. Do imagenet classifiers generalize to im- agenet? In ICML, pages 5389–5400, 2019. 5
2019
-
[42]
Sophia Koepke, Oriol Vinyals, Cordelia Schmid, and Zeynep Akata
Karsten Roth, Jae-Myung Kim, A. Sophia Koepke, Oriol Vinyals, Cordelia Schmid, and Zeynep Akata. Waffling around for performance: Visual classification with random words and broad concepts. In ICCV, pages 15700–15711,
-
[43]
Generalized zero- and few- shot learning via aligned variational autoencoders
Edgar Sch ¨onfeld, Sayna Ebrahimi, Samarth Sinha, Trevor Darrell, and Zeynep Akata. Generalized zero- and few- shot learning via aligned variational autoencoders. In CVPR, pages 8247–8255, 2019. 2
2019
-
[44]
Test- time prompt tuning for zero-shot generalization in vision- language models
Manli Shu, Weili Nie, De-An Huang, Zhiding Yu, Tom Goldstein, Anima Anandkumar, and Chaowei Xiao. Test- time prompt tuning for zero-shot generalization in vision- language models. In NeurIPS, 2022. 1, 5, 6, 7
2022
-
[45]
Hunting attributes: Con- text prototype-aware learning for weakly supervised seman- tic segmentation
Feilong Tang, Zhongxing Xu, Zhaojun Qu, Wei Feng, Xingjian Jiang, and Zongyuan Ge. Hunting attributes: Con- text prototype-aware learning for weakly supervised seman- tic segmentation. In CVPR, pages 3324–3334, 2024. 1
2024
-
[46]
Argue: Attribute-guided prompt tuning for vision-language models
Xinyu Tian, Shu Zou, Zhaoyuan Yang, and Jing Zhang. Argue: Attribute-guided prompt tuning for vision-language models. In CVPR, pages 28578–28587, 2024. 1, 3, 5, 6, 7
2024
-
[47]
Tuning multi-mode token- level prompt alignment across modalities
Dongsheng Wang, Miaoge Li, Xinyang Liu, Mingsheng Xu, Bo Chen, and Hanwang Zhang. Tuning multi-mode token- level prompt alignment across modalities. In NeurIPS, 2023. 2, 3
2023
-
[48]
Lipton, and Eric P
Haohan Wang, Songwei Ge, Zachary C. Lipton, and Eric P. Xing. Learning robust global representations by penalizing local predictive power. In NeurIPS, pages 10506–10518,
-
[49]
Zero-shot visual recognition via bidirectional latent embedding
Qian Wang and Ke Chen. Zero-shot visual recognition via bidirectional latent embedding. Internal Journal of Com- pution Vision, 124(3):356–383, 2017. 2
2017
-
[50]
Welinder, S
P. Welinder, S. Branson, T. Mita, C. Wah, Florian Schroff, Serge J. Belongie, and P. Perona. Caltech-ucsd birds 200. Technical Report CNS-TR-2010-001, Caltech,, 2010. 5
2010
-
[51]
Schiele, and Zeynep Akata
Yongqin Xian, B. Schiele, and Zeynep Akata. Zero-shot learning — the good, the bad and the ugly. CVPR, pages 3077–3086, 2017. 1, 2
2017
-
[52]
Lorenz, B
Yongqin Xian, T. Lorenz, B. Schiele, and Zeynep Akata. Feature generating networks for zero-shot learning. In CVPR, pages 5542–5551, 2018. 2
2018
-
[53]
Khan, Zhiqiang Shen, Muzammal Naseer, Guangyi Chen, and Fahad Shahbaz Khan
Sheng Zhang, Salman H. Khan, Zhiqiang Shen, Muzammal Naseer, Guangyi Chen, and Fahad Shahbaz Khan. Prompt- cal: Contrastive affinity learning via auxiliary prompts for generalized novel category discovery. InCVPR, pages 3479– 3488, 2023. 3
2023
-
[54]
Places: A 10 million image database for scene recognition
Bolei Zhou, `Agata Lapedriza, Aditya Khosla, Aude Oliva, and Antonio Torralba. Places: A 10 million image database for scene recognition. IEEE Trans. Pattern Anal. Mach. In- tell., 40(6):1452–1464, 2018. 5
2018
-
[55]
Conditional prompt learning for vision-language models
Kaiyang Zhou, Jingkang Yang, Chen Change Loy, and Zi- wei Liu. Conditional prompt learning for vision-language models. In CVPR, pages 16795–16804, 2022. 1, 3, 5, 6, 7
2022
-
[56]
Learning to prompt for vision-language models
Kaiyang Zhou, Jingkang Yang, Chen Change Loy, and Ziwei Liu. Learning to prompt for vision-language models. Int. J. Comput. Vis., 130(9):2337–2348, 2022. 1, 5, 6, 7
2022
-
[57]
Prompt-aligned gradient for prompt tuning
Beier Zhu, Yulei Niu, Yucheng Han, Yue Wu, and Hanwang Zhang. Prompt-aligned gradient for prompt tuning. InICCV, pages 15613–15623, 2023. 5, 6, 7
2023
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.