REVIEW 4 major objections 10 minor 52 references
Structured-Condensed Prompt Tuning in Vision-Language Models for Fine-grained Image Recognition
T0 review · 4 major / 10 minor · reviewed 2026-07-08 · glm-5.2
Pith's one-line read Encoding inter-class relationships into CLIP prompts boosts fine-grained recognition
desk verdict SCPT combines signed random projection (LSH) for inter-class semantic encoding with SVD-based denoising of the KgCoOp regularization target. Consistent ~1% gains over TCP across 14 fine-grained benchmarks, but the ablation has a load-bearing gap: no random-binary-code control to isolate whether semantic structure or extra token capacity drives the gains. 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
Semantic Relation Encoding (SRE): signed random projection of the CLIP-derived inter-class cosine similarity matrix into binary codes, prepended to learnable prompt vectors. Semantic Condensation loss (ScLoss): SVD-based truncation of handcrafted-prompt embeddings with adaptive threshold selection via Marchenko-Pastur noise bounds and a probabilistic retention function, used as a denoised MSE regularization target.
What would settle it
Replace the SRE binary codes with random binary vectors of the same dimension. If classification performance remains unchanged, the semantic content of the codes is not the source of the improvement.
Extended reading notes
Core claim
The central mechanism is the SRE token: a binary code of dimension d = ceil(log2(N) + d_free) bits, produced by projecting the N×N class-similarity matrix (derived from frozen CLIP text embeddings of class names) through a random Gaussian matrix and taking the sign. Each class's SRE token encodes its angular relationships to all other classes in Hamming space, where the expected normalized Hamming distance between two classes' codes equals their angular distance in the original embedding space divided by pi (a classical locality-sensitive-hashing result). These binary tokens are embedded via the standard word-embedding function and concatenated with learnable context vectors before being fed
Load-bearing premise
The SRE module assumes that CLIP's frozen text embeddings of class names (from the template 'a photo of [classname]') encode meaningful taxonomic relationships that survive compression into binary codes and improve classification when prepended to learnable prompts. The Johnson-Lindenstrauss lemma guarantees approximate distance preservation, but not that the preserved distances are the ones that matter for distinguishing fine-grained categories.
Editorial extensions
If this is right
- If inter-class semantic topology is as beneficial as reported, datasets with larger class counts should see proportionally larger gains from SRE, since richer category sets produce more informative topology — the paper notes this trend in t-SNE visualizations but does not systematically quantify it.
- The SRE approach could extend to open-vocabulary or hierarchical classification settings where class relationships are explicitly taxonomic, potentially amplifying the structure-preserving benefit.
- The Marchenko-Pastur-guided singular-value truncation in ScLoss is a general denoising technique for any prompt-regularization scheme that uses frozen reference embeddings, not specific to fine-grained recognition.
- If shallow text-only prompting with structural encoding matches deep multi-modal methods (as the comparison with PromptSRC suggests), the field may need to reconsider whether prompt depth and modality are the right axes of progress, or whether structural inductive biases are more cost-effective.
Reading between the lines
- The paper does not ablate the information content of the binary SRE codes themselves (e.g., by replacing them with random binary vectors of the same dimension). If such a control showed comparable gains, it would suggest the benefit comes from added prompt capacity or regularization dynamics rather than from preserved semantic topology.
- The signed random projection preserves angular distances in expectation, but classification utility depends on whether the preserved distances are the discriminative ones for fine-grained classes — classes that are semantically close but visually distinct (or vice versa) could produce SRE codes that mislead rather than help.
- The ScLoss threshold tau=0.3 is fixed across all datasets, but the optimal truncation rank K is computed per-dataset via the probabilistic selection function. The interaction between dataset-specific K and the fixed tau is not fully explored — it is possible that the method's robustness to tau stems from the probabilistic retention function absorbing most of the sensitivity.
- The comparison with PromptSRC (deep, multi-modal, 76.94% vs. SCPT's 76.70%) is close enough that the ~0.24% gap could fall within seed variance; the paper does not report confidence intervals or multiple-seed averages for this comparison.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Structured-Condensed Prompt Tuning (SCPT) for fine-grained image recognition with vision-language models. SCPT has two components: (1) Semantic Relation Encoding (SRE), which computes a class similarity matrix from CLIP's frozen text embeddings, compresses it via signed random projection into binary codes, and prepends these as tokens to learnable prompts; and (2) Semantic Condensation loss (ScLoss), which applies SVD-based truncation to handcrafted prompt embeddings before computing an MSE regularizer against learnable prompt embeddings. The method is evaluated on 14 fine-grained benchmarks in few-shot and base-to-novel generalization settings, reporting state-of-the-art results with a shallow, text-only design.
Significance. The paper addresses a well-motivated problem: most prompt tuning methods treat class labels as independent tokens, ignoring inter-class semantic structure. The combination of signed random projection (grounded in the JL lemma and LSH theory, with a concentration bound in Appendix C) and SVD-based denoising (motivated by Marchenko-Pastur) is a reasonable and lightweight approach. The experimental coverage is broad (14 datasets, multiple backbones, efficiency analysis). The method achieves competitive results with a shallow text-only design comparable to deeper multi-modal approaches like PromptSRC. The reproducibility of the random projection component is supported by a seed-sensitivity analysis (Table 4).
major comments (4)
- [Table 3, §4.4] The central narrative is that SRE explicitly encodes inter-class semantic topology and this is a key innovation. However, Table 3 shows SRE alone contributes only +0.17% over the TCP baseline (75.80 vs. 75.63), which is within typical run-to-run variance. The combined SRE+ScLoss gain of +1.07% is presented as evidence of synergy, but no control experiment replaces SRE with random binary codes of the same dimension. Without this control, the paper cannot distinguish 'semantic structure helps' from 'extra learnable token positions help.' This is load-bearing because the paper's core claim is that structured semantic modeling is the mechanism. A random-binary-code ablation would directly test whether the semantic content of SRE codes matters beyond providing additional prompt capacity.
- [§3.2.3, Eq. (15)] The Marchenko-Pastur motivation for SVD truncation is applied heuristically. The threshold τ=0.3 is fixed across all 14 datasets without rigorous justification. While Figure 7 shows low sensitivity to τ on four datasets, the theoretical connection between the MP distribution and the fixed threshold τ=0.3 is not established. Specifically, Eq. (15) defines a probabilistic selection function P(σ_i), but the relationship between τ and the MP upper bound σ_max (which depends on N, M, and noise variance σ²) is never made explicit. If τ is meant to approximate σ_max, the paper should show this; if not, the MP motivation is decorative. This weakens the theoretical grounding of the ScLoss component.
- [§3.2.1, Eq. (6)-(7)] The SRE binary codes P are passed through the word embedding function e(·) to generate tokens R_i = e(P_i), where P_i ∈ {0,1}^d. The paper does not discuss what e(·) maps binary values 0 and 1 to in CLIP's vocabulary. If 0 maps to a padding or special token and 1 maps to a regular token, the semantic content of the binary codes may be lost or distorted at the embedding stage. The JL lemma (Appendix C) guarantees approximate angular distance preservation in Hamming space, but this says nothing about whether CLIP's text encoder can meaningfully process these binary codes as input tokens. The paper should clarify the embedding mechanism and discuss whether the binary codes carry usable signal through e(·).
- [Table 2, §4.3] In the base-to-novel generalization setting, the SRE for novel classes is computed from textual semantic representations of candidate class names using the same random projection function as in training (§4.3). However, it is unclear whether the random projection matrix W is fixed at training time and reused at test time, or re-generated. If W is regenerated, the binary codes for base classes would change between training and inference, breaking consistency. The paper should explicitly state whether W is fixed or re-randomized for novel-class inference, as this affects the validity of the generalization results.
minor comments (10)
- [Abstract] The abstract states 'achieves state-of-the-art performance' but Table 7 shows PromptSRC achieves 76.94% vs. SCPT's 76.70% on the same 14-dataset average. The claim should be qualified.
- [Table 1] The table caption says '14 fine-grained image datasets' but lists 14 datasets including 'Dog Breed' and 'Stanford Dogs' which are both dog datasets. Clarify whether these overlap.
- [§3.2.2, Eq. (11)] The variable N_c (number of seen classes) is mentioned in the text after Eq. (11) but the equation uses N. Consistency is needed.
- [§4.1] The implementation details state 'threshold τ is 0.3' but do not specify the value of d_free used in the main experiments. Figure 4 suggests d_free=3 is best, but this should be stated explicitly.
- [Table 2(d), Oxford Pets] SCPT underperforms ProText on Oxford Pets in the base-to-novel setting (HM 96.29 vs. 96.45). The paper does not discuss this exception, while it does discuss Oxford Pets in the few-shot setting (§4.2).
- [Figure 3] The figure caption refers to 'SVD Dropout' but the method is described as 'SVD-based filtering' or 'truncation' in the text. Terminology should be consistent.
- [§4.4, Table 3] The ablation uses 'TCP (Reg.)' as baseline but it is described as 'CoOp-style prompt tuning with semantic regularization.' Clarify whether this is exactly the TCP method or a variant.
- [Appendix C] Lemma 1 and Theorem 1 are standard LSH results. The paper should cite the original source (e.g., Charikar, 2002) rather than only referencing 'classical result in LSH' without citation.
- [Table 5] The 'Ratio (%)' column header is ambiguous — ratio of what to what? Presumably learnable parameters to total model parameters, but this should be stated.
- [§4.5, Table 7] The comparison with PromptSRC uses 14 datasets for SCPT but the caption says '15 datasets.' This inconsistency should be corrected.
Simulated Author's Rebuttal
We thank the referee for a careful and constructive review. The four major comments raise substantive points about experimental controls, theoretical grounding, embedding mechanics, and implementation details. We address each below and commit to revisions where the referee's points are well-taken.
read point-by-point responses
-
Referee: [Table 3, §4.4] SRE alone contributes only +0.17% over TCP baseline, within run-to-run variance. No control experiment replaces SRE with random binary codes of the same dimension. Without this control, the paper cannot distinguish 'semantic structure helps' from 'extra learnable token positions help.'
Authors: The referee raises a valid and important concern. We agree that the random-binary-code ablation is a necessary control to isolate the contribution of semantic structure from the effect of additional learnable token positions. We will conduct this experiment by replacing the SRE codes with random binary vectors of the same dimension (drawn uniformly from {0,1}^d with d = ceil(log2(N) + d_free)), keeping all other components fixed. This will directly test whether the semantic content of SRE codes matters beyond providing additional prompt capacity. We will report the results in the revised Table 3. We acknowledge that the +0.17% gain from SRE alone is modest and within typical variance, and the random-code control will allow us to make honest claims about whether SRE's semantic structure provides a genuine benefit or whether the gains primarily come from the synergy with ScLoss. If the random-code baseline matches or exceeds SRE, we will revise our claims accordingly. revision: yes
-
Referee: [§3.2.3, Eq. (15)] The Marchenko-Pastur motivation for SVD truncation is applied heuristically. The threshold τ=0.3 is fixed across all 14 datasets without rigorous justification. The relationship between τ and the MP upper bound σ_max is never made explicit. If τ is meant to approximate σ_max, the paper should show this; if not, the MP motivation is decorative.
Authors: The referee is correct that the connection between the fixed threshold τ=0.3 and the MP upper bound σ_max is not made explicit in the current manuscript. We will address this in the revision. Specifically, we will: (1) compute the MP upper bound σ_max for representative datasets using the estimated noise variance and matrix dimensions, and show the relationship between σ_max and the empirically optimal truncation point; (2) clarify that τ serves as a practical approximation to σ_max, and discuss why a single fixed value works reasonably across datasets despite varying N and M (Figure 7 shows sensitivity below 0.3% across the tested range). We concede that the current presentation does not rigorously establish the τ–σ_max relationship, and the MP motivation is presently more of a guiding intuition than a derived result. We will revise the text to be transparent about this: the MP distribution motivates the existence of a noise floor, but the specific threshold is empirically validated rather than theoretically derived. If the reviewer feels the MP framing should be substantially de-emphasized, we are open to that as well. revision: partial
-
Referee: [§3.2.1, Eq. (6)-(7)] The paper does not discuss what e(·) maps binary values 0 and 1 to in CLIP's vocabulary. If 0 maps to a padding or special token and 1 maps to a regular token, the semantic content of the binary codes may be lost or distorted at the embedding stage. The JL lemma guarantees angular distance preservation in Hamming space, but says nothing about whether CLIP's text encoder can meaningfully process these binary codes as input tokens.
Authors: This is a fair point that we failed to address in the manuscript. We will clarify the embedding mechanism in the revision. In our implementation, the binary codes P_i are not mapped to specific vocabulary tokens. Instead, following the standard practice in CoOp-style methods where learnable context vectors are continuous embeddings outside the discrete vocabulary space, the binary codes are treated as indices into CLIP's word embedding lookup table. Specifically, the values 0 and 1 are used to index into the embedding matrix, and the resulting embedding vectors are then treated as continuous inputs to the text encoder, analogous to how soft prompt vectors operate. The key distinction from discrete token processing is that these embeddings are not constrained to correspond to meaningful natural language tokens; rather, they serve as structured initialization points that the text encoder processes through its standard transformer layers. We agree that the JL lemma guarantee applies to the Hamming space representation and does not directly extend to the text encoder's processing of these embeddings. We will add a discussion of this limitation and note that the empirical results (including the seed-sensitivity analysis in Table 4) demonstrate that the signal does carry through e(·) in practice, even though the theoretical guarantee does not cover this stage. We will also add the random-binary-code ablation (from Comment 1) as further evidence. revision: yes
-
Referee: [Table 2, §4.3] It is unclear whether the random projection matrix W is fixed at training time and reused at test time, or re-generated. If W is regenerated, the binary codes for base classes would change between training and inference, breaking consistency. The paper should explicitly state whether W is fixed or re-randomized for novel-class inference.
Authors: We thank the referee for catching this ambiguity. To clarify: the random projection matrix W is fixed at training time and reused at test time for novel-class inference. W is generated once, stored, and applied consistently to compute SRE codes for both base and novel classes. This is essential for consistency, as the referee correctly notes. We will explicitly state in the revised §4.3 that W is fixed throughout training and inference, and we will also clarify this in the algorithm description (Algorithm 1) and in §3.2.1 where W is introduced. revision: yes
Circularity Check
No circularity: SRE and ScLoss are independently constructed from frozen CLIP embeddings and externally evaluated on 14 benchmarks
full rationale
The paper's two main components, SRE and ScLoss, are constructed from frozen CLIP text embeddings of class names and are not defined in terms of the paper's own outputs. SRE computes a similarity matrix S from frozen embeddings (Eq. 5), applies signed random projection (Eq. 6), and prepends the result to learnable prompts (Eq. 7). ScLoss applies SVD denoising to handcrafted prompt embeddings X and regularizes learnable embeddings Y against the denoised version (Eqs. 8-11). Neither component is defined in terms of the prediction it produces. The theoretical justification (Appendix C) invokes the JL lemma and LSH random hyperplane results, which are standard external mathematical facts, not self-citations. The experimental evaluation on 14 benchmarks with comparisons to 7 external methods provides independent falsification. The self-referential information flow (CLIP embeddings used to structure prompts fed back into CLIP) is a design choice, not a circularity: the similarity matrix is computed from frozen, pre-trained embeddings and is not a fitted parameter, and the learnable context vectors are optimized against external image data via contrastive loss. The paper does not fit a parameter to a subset of data and then 'predict' a closely related quantity. The ablation in Table 3 isolates SRE and ScLoss contributions independently. While the skeptic's concern about whether the semantic content of binary codes matters versus extra learnable tokens is a valid correctness risk, it is not a circularity issue—the paper does not claim a prediction that reduces to its inputs by construction.
Assumptions & free parameters
free parameters (5)
- λ (loss weight) =
8.0
- τ (SVD threshold) =
0.3
- d_free =
3
- M (context length) =
4
- σ (Gaussian init std) =
0.02
assumptions (3)
- domain assumption CLIP's text embeddings of class names encode meaningful taxonomic relationships that can be preserved through signed random projection
- domain assumption Small singular values of the handcrafted prompt embedding matrix correspond to noise rather than fine-grained semantic signal
- ad hoc to paper Prepending binary semantic relation codes to learnable prompt tokens allows the text encoder to utilize inter-class structure
Cite this review
Pith. "Pith review of Structured-Condensed Prompt Tuning in Vision-Language Models for Fine-grained Image Recognition." pith.science (2026). https://pith.science/paper/XKQDBCID
@misc{pith2026260706185,
author = {Pith},
title = {Pith review of: Structured-Condensed Prompt Tuning in Vision-Language Models for Fine-grained Image Recognition},
year = {2026},
howpublished = {\url{https://pith.science/paper/XKQDBCID}},
note = {Machine review of arXiv:2607.06185}
}
read the original abstract
Fine-grained image recognition poses a significant challenge due to the substantial expertise and effort required for manual annotation. Vision-language models (VLMs) like CLIP provide a compelling zero-shot alternative, reducing reliance on extensive labeled data. However, their ability to capture subtle distinctions remains limited, leading to subpar recognition performance. While prompt tuning has proven effective for adapting VLMs, most existing methods treat class labels as isolated, discrete entities, overlooking the rich semantic relationships between them. This oversimplified assumption limits the model's ability to capture hierarchical dependencies and inter-class correlations -- both critical for distinguishing visually similar categories. The problem is especially acute in fine-grained classification, where accurate recognition depends on understanding complex label semantics. To address this, we propose Structured-Condensed Prompt Tuning (SCPT), which enhances semantic structure modeling in prompt learning. Specifically, we introduce Semantic Relation Encoding (SRE) to explicitly model inter-class semantic topology and encode structured label relationships. In parallel, we design a Semantic Condensation loss (ScLoss) to suppress redundant supervision and extract discriminative components from the global semantic space. Together, these components significantly improve semantic alignment and fine-grained discrimination. Extensive experiments on 14 fine-grained benchmarks show that SCPT effectively mitigates semantic ambiguity and achieves state-of-the-art performance in both few-shot and base-to-novel generalization settings.
Figures
Figures from the paper (6 more)
Reference graph
Works this paper leans on
-
[1]
Yang Liu, Yuhao Dang, Xinbo Gao, Jungong Han, and Ling Shao. Zero-shot sketch-based image retrieval via adaptive relation-aware metric learning.Pattern Recognition, 152:110452, 2024. ISSN 0031-3203
work page 2024
-
[2]
Ying Li, Shuaiyu Deng, Chunming Guan, and Jiaquan Gao. Complementary two-branch transformer for multi-label image retrieval.Pattern Recognition, 168:111806, 2025. ISSN 0031-3203
work page 2025
-
[3]
Shizhen Chang and Pedram Ghamisi. Changes to captions: An attentive network for remote sensing change captioning.IEEE Transactions on Image Processing, 32:6047–6060, 2023
work page 2023
-
[4]
Mingzhen Sun, Weining Wang, Xinxin Zhu, and Jing Liu. Reparameterizing and dynamically quantizing image features for image generation.Pattern Recognition, 146:109962, 2024. ISSN 0031-3203
work page 2024
-
[5]
Yonghao Xu, Weikang Yu, Pedram Ghamisi, Michael Kopp, and Sepp Hochreiter. Txt2img-mhn: Remote sensing image generation from text using modern hopfield networks.IEEE Transactions on Image Processing, 32:5737–5750, 2023
work page 2023
-
[6]
Zhiyong Xiao, Guang Diao, and Zhaohong Deng. Fine grained food image recognition based on swin transformer.Journal of Food Engineering, 380:112134, 2024. ISSN 0260-8774
work page 2024
-
[7]
Yuxin Liu, Weiqing Min, Shuqiang Jiang, and Yong Rui. Convolution-enhanced bi-branch adaptive transformer with cross-task interaction for food category and ingredient recognition. IEEE Transactions on Image Processing, 33:2572–2586, 2024
work page 2024
-
[8]
Pengfei Zhou, Weiqing Min, Jiajun Song, Yang Zhang, and Shuqiang Jiang. Synthesizing knowledge-enhanced features for real-world zero-shot food detection.IEEE Transactions on Image Processing, 33:1285–1298, 2024
work page 2024
Show all 52 references
-
[9]
Food recommendation towards personalized wellbeing.Trends in Food Science & Technology, 156:104877, 2025
Guanhua Qiao, Dachuan Zhang, Nana Zhang, Xiaotao Shen, Xidong Jiao, Wenwei Lu, Daming Fan, Jianxin Zhao, Hao Zhang, Wei Chen, and Jinlin Zhu. Food recommendation towards personalized wellbeing.Trends in Food Science & Technology, 156:104877, 2025. ISSN 0924-2244
2025
-
[10]
Large scale visual food recognition.IEEE Transactions on Pattern Analysis and Machine Intelligence, 45(8):9932–9949, 2023
Weiqing Min, Zhiling Wang, Yuxin Liu, Mengjiang Luo, Liping Kang, Xiaoming Wei, Xiaolin Wei, and Shuqiang Jiang. Large scale visual food recognition.IEEE Transactions on Pattern Analysis and Machine Intelligence, 45(8):9932–9949, 2023
2023
-
[11]
Instance-level few-shot learning with class hierarchy mining.IEEE Transactions on Image Processing, 32:2374–2385, 2023
Anh-Khoa Nguyen Vu, Thanh-Toan Do, Nhat-Duy Nguyen, Vinh-Tiep Nguyen, Thanh Duc Ngo, and Tam V Nguyen. Instance-level few-shot learning with class hierarchy mining.IEEE Transactions on Image Processing, 32:2374–2385, 2023
2023
-
[12]
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, et al. Learning transferable visual models from natural language supervision. InInternational conference on machine learning, pag...
2021
-
[13]
Learning to prompt for vision-language models.International Journal of Computer Vision, 130(9):2337–2348, 2022
Kaiyang Zhou, Jingkang Yang, Chen Change Loy, and Ziwei Liu. Learning to prompt for vision-language models.International Journal of Computer Vision, 130(9):2337–2348, 2022. 21
2022
-
[14]
Conditional prompt learning for vision-language models
Kaiyang Zhou, Jingkang Yang, Chen Change Loy, and Ziwei Liu. Conditional prompt learning for vision-language models. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 16816–16825, 2022
2022
-
[15]
Scaling up visual and vision-language representation learning with noisy text supervision
Chao Jia, Yinfei Yang, Ye Xia, Yi-Ting Chen, Zarana Parekh, Hieu Pham, Quoc Le, Yun-Hsuan Sung, Zhen Li, and Tom Duerig. Scaling up visual and vision-language representation learning with noisy text supervision. InInternational conference on machine learning, pages 4904–4916. ...
2021
-
[16]
Blip: Bootstrapping language-image pre- training for unified vision-language understanding and generation
Junnan Li, Dongxu Li, Caiming Xiong, and Steven Hoi. Blip: Bootstrapping language-image pre- training for unified vision-language understanding and generation. InInternational conference on machine learning, pages 12888–12900. PMLR, 2022
2022
-
[17]
Effective conditioned and composed image retrieval combining clip-based features
Alberto Baldrati, Marco Bertini, Tiberio Uricchio, and Alberto Del Bimbo. Effective conditioned and composed image retrieval combining clip-based features. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 21466–21474, 2022
2022
-
[18]
Clip for all things zero-shot sketch-based image retrieval, fine-grained or not
Aneeshan Sain, Ayan Kumar Bhunia, Pinaki Nath Chowdhury, Subhadeep Koley, Tao Xiang, and Yi-Zhe Song. Clip for all things zero-shot sketch-based image retrieval, fine-grained or not. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 276...
2023
-
[19]
Cris: Clip-driven referring image segmentation
Zhaoqing Wang, Yu Lu, Qiang Li, Xunqiang Tao, Yandong Guo, Mingming Gong, and Tongliang Liu. Cris: Clip-driven referring image segmentation. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 11686–11695, 2022
2022
-
[20]
Image segmentation using text and image prompts
Timo Lüddecke and Alexander Ecker. Image segmentation using text and image prompts. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 7086–7096, 2022
2022
-
[21]
Sedigheh Eslami, Christoph Meinel, and Gerard De Melo. Pubmedclip: How much does clip benefit visual question answering in the medical domain? InFindings of the Association for Computational Linguistics: EACL 2023, pages 1181–1193, 2023
2023
-
[22]
Maple: Multi-modal prompt learning
Muhammad Uzair Khattak, Hanoona Rasheed, Muhammad Maaz, Salman Khan, and Fa- had Shahbaz Khan. Maple: Multi-modal prompt learning. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 19113–19122, 2023
2023
-
[23]
Self-regulating prompts: Foundational model adaptation without forgetting
Muhammad Uzair Khattak, Syed Talal Wasim, Muzammal Naseer, Salman Khan, Ming-Hsuan Yang, and Fahad Shahbaz Khan. Self-regulating prompts: Foundational model adaptation without forgetting. InProceedings of the IEEE/CVF International Conference on Computer Vision, pages 15190–15...
2023
-
[24]
Dgprompt: Dual-guidance prompts generation for vision-language models.Neural Networks, page 107472, 2025
Tai Zheng, Zhen-Duo Chen, Zi-Chao Zhang, Zhen-Xiang Ma, Li-Jun Zhao, Chong-Yu Zhang, Xin Luo, and Xin-Shun Xu. Dgprompt: Dual-guidance prompts generation for vision-language models.Neural Networks, page 107472, 2025
2025
-
[25]
Prompt distribution learning
Yuning Lu, Jianzhuang Liu, Yonggang Zhang, Yajing Liu, and Xinmei Tian. Prompt distribution learning. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 5206–5215, 2022. 22
2022
-
[26]
Visual-language prompt tuning with knowledge- guided context optimization
Hantao Yao, Rui Zhang, and Changsheng Xu. Visual-language prompt tuning with knowledge- guided context optimization. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 6757–6767, 2023
2023
-
[27]
Tcp: Textual-based class-aware prompt tuning for visual-language model
Hantao Yao, Rui Zhang, and Changsheng Xu. Tcp: Textual-based class-aware prompt tuning for visual-language model. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 23438–23448, 2024
2024
-
[28]
Bayesian test-time adaptation for vision-language models
Lihua Zhou, Mao Ye, Shuaifeng Li, Nianxin Li, Xiatian Zhu, Lei Deng, Hongbin Liu, and Zhen Lei. Bayesian test-time adaptation for vision-language models. InProceedings of the Computer Vision and Pattern Recognition Conference, pages 29999–30009, 2025
2025
-
[29]
An image is worth 16x16 words: Transformers for image recognition at scale
Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, Jakob Uszkoreit, and Neil Houlsby. An image is worth 16x16 words: Transformers for image recognition at...
2021
-
[30]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. InProceedings of the IEEE conference on computer vision and pattern recognition, pages 770–778, 2016
2016
-
[31]
Long-clip: Unlocking the long-text capability of clip
Beichen Zhang, Pan Zhang, Xiaoyi Dong, Yuhang Zang, and Jiaqi Wang. Long-clip: Unlocking the long-text capability of clip. InEuropean Conference on Computer Vision, pages 310–325. Springer, 2024
2024
-
[32]
Extensions of lipschitz mappings into a hilbert space.Contemporary mathematics, 26(189-206):1, 1984
William B Johnson, Joram Lindenstrauss, et al. Extensions of lipschitz mappings into a hilbert space.Contemporary mathematics, 26(189-206):1, 1984
1984
-
[33]
A short proof of the marchenko–pastur theorem.Comptes Rendus Mathematique, 354(3):319–322, 2016
Pavel Yaskov. A short proof of the marchenko–pastur theorem.Comptes Rendus Mathematique, 354(3):319–322, 2016
2016
-
[34]
A new dataset of dog breed images and a benchmark for finegrained classification.Computational Visual Media, 6:477–487, 2020
Ding-Nan Zou, Song-Hai Zhang, Tai-Jiang Mu, and Min Zhang. A new dataset of dog breed images and a benchmark for finegrained classification.Computational Visual Media, 6:477–487, 2020
2020
-
[35]
Cats and dogs
Omkar M Parkhi, Andrea Vedaldi, Andrew Zisserman, and CV Jawahar. Cats and dogs. In 2012 IEEE conference on computer vision and pattern recognition, pages 3498–3505. IEEE, 2012
2012
-
[36]
Automated flower classification over a large number of classes
Maria-Elena Nilsback and Andrew Zisserman. Automated flower classification over a large number of classes. In2008 Sixth Indian conference on computer vision, graphics & image processing, pages 722–729. IEEE, 2008
2008
-
[37]
3d object representations for fine-grained categorization
Jonathan Krause, Michael Stark, Jia Deng, and Li Fei-Fei. 3d object representations for fine-grained categorization. InProceedings of the IEEE international conference on computer vision workshops, pages 554–561, 2013
2013
-
[38]
Webly supervised fine-grained recognition: Benchmark datasets and an approach
Zeren Sun, Yazhou Yao, Xiu-Shen Wei, Yongshun Zhang, Fumin Shen, Jianxin Wu, Jian Zhang, and Heng Tao Shen. Webly supervised fine-grained recognition: Benchmark datasets and an approach. InProceedings of the IEEE/CVF international conference on computer vision, pages 10602–106...
2021
-
[39]
Novel dataset for fine-grained image categorization
Aditya Khosla, Nityananda Jayadevaprakash, Bangpeng Yao, and Li Fei-Fei. Novel dataset for fine-grained image categorization. InFirst Workshop on Fine-Grained Visual Categorization, IEEE Conference on Computer Vision and Pattern Recognition, Colorado Springs, CO, June 2011
2011
-
[40]
J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei. ImageNet: A Large-Scale Hierarchical Image Database. InCVPR09, 2009
2009
-
[41]
Vegfru: A domain-specific dataset for fine-grained visual categorization
Saihui Hou, Yushan Feng, and Zilei Wang. Vegfru: A domain-specific dataset for fine-grained visual categorization. InProceedings of the IEEE international conference on computer vision, pages 541–549, 2017
2017
-
[42]
The caltech-ucsd birds-200-2011 dataset
Catherine Wah, Steve Branson, Peter Welinder, Pietro Perona, and Serge Belongie. The caltech-ucsd birds-200-2011 dataset. California Institute of Technology, 2011
2011
-
[43]
Food-101–mining discriminative components with random forests
Lukas Bossard, Matthieu Guillaumin, and Luc Van Gool. Food-101–mining discriminative components with random forests. InComputer vision–ECCV 2014: 13th European conference, zurich, Switzerland, September 6-12, 2014, proceedings, part VI 13, pages 446–461. Springer, 2014
2014
-
[44]
Deep-based ingredient recognition for cooking recipe retrieval
Jingjing Chen and Chong-Wah Ngo. Deep-based ingredient recognition for cooking recipe retrieval. InProceedings of the 24th ACM international conference on Multimedia, pages 32–41, 2016
2016
-
[45]
Ingredient-guided cascaded multi-attention network for food recognition
Weiqing Min, Linhu Liu, Zhengdong Luo, and Shuqiang Jiang. Ingredient-guided cascaded multi-attention network for food recognition. InProceedings of the 27th ACM International Conference on Multimedia, pages 1331–1339, 2019
2019
-
[46]
Isia food-500: A dataset for large-scale food recognition via stacked global-local attention network
Weiqing Min, Linhu Liu, Zhiling Wang, Zhengdong Luo, Xiaoming Wei, Xiaolin Wei, and Shuqiang Jiang. Isia food-500: A dataset for large-scale food recognition via stacked global-local attention network. InProceedings of the 28th ACM International Conference on Multimedia, pages...
2020
-
[47]
Fine- grained visual classification of aircraft, 2013
Subhransu Maji, Esa Rahtu, Juho Kannala, Matthew Blaschko, and Andrea Vedaldi. Fine- grained visual classification of aircraft, 2013. arXiv:1306.5151
2013 arXiv
-
[48]
Learning to prompt with text only supervision for vision-language models
Muhammad Uzair Khattak, Muhammad Ferjad Naeem, Muzammal Naseer, Luc Van Gool, and Federico Tombari. Learning to prompt with text only supervision for vision-language models. InProceedings of the AAAI Conference on Artificial Intelligence, pages 4230–4238, 2025
2025
-
[49]
Advancing textual prompt learning with anchored attributes
Zheng Li, Yibing Song, Ming-Ming Cheng, Xiang Li, and Jian Yang. Advancing textual prompt learning with anchored attributes. InProceedings of the IEEE/CVF International Conference on Computer Vision, pages 3618–3627, 2025
2025
-
[50]
Grad-cam: Visual explanations from deep networks via gradient-based localization
Ramprasaath R Selvaraju, Michael Cogswell, Abhishek Das, Ramakrishna Vedantam, Devi Parikh, and Dhruv Batra. Grad-cam: Visual explanations from deep networks via gradient-based localization. InProceedings of the IEEE international conference on computer vision, pages 618–626, 2017
2017
-
[51]
Visual prompt tuning
Menglin Jia, Luming Tang, Bor-Chun Chen, Claire Cardie, Serge Belongie, Bharath Hariharan, and Ser-Nam Lim. Visual prompt tuning. InEuropean conference on computer vision, pages 709–727. Springer, 2022. 24
2022
-
[52]
Dualprompt: Complementary prompting for rehearsal-free continual learning
Zifeng Wang, Zizhao Zhang, Sayna Ebrahimi, Ruoxi Sun, Han Zhang, Chen-Yu Lee, Xiaoqi Ren, Guolong Su, Vincent Perot, Jennifer Dy, et al. Dualprompt: Complementary prompting for rehearsal-free continual learning. InEuropean conference on computer vision, pages 631–648. Springer...
2022
Reviewed July 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.