Response to Reviewer 4kGv
Dear Reviewer 4kGv, we are grateful for your time in reviewing this paper and we provide the point-to-point response to your comments below.
> **[Q1].** What is the key novelty of the paper?
**[A1].** We are sorry we didn't showcase this well in the paper and caused your confusion. Below, we elaborate on the novelty of our paper.
**(Ⅰ) We identify a simple but hard-to-beat training-free classifier.** First of all, all existing efficient fine-tuning methods for CLIP (e.g., CoOp/APE/Tip-Adapter/CLIP-Adapter, etc.) have frozen the feature extractor of the CLIP model. Therefore, we do not simply validate the powerful feature extraction capability of CLIP. **Our first contribution is revealing that there exists a simple but effective classifier that performs on par with or even better than previous complicated methods.** Previous methods either require additional learnable modules, such as learnable prompts, and Adapters, or need extra cache modules to store training data. However, we point out that there exists a simple yet effective training-free classifier (i.e., GDA) that has been overlooked in the existing literature. Without the need for additional optimization and design, it surpasses all training-free methods and achieves results on par with or better than training-required methods. This facilitates rapid model transfer and prompts a reconsideration of the effectiveness of these complex modules, inspiring the future design of more efficient fine-tuning methods.
**(Ⅱ) We extend its applicability to various scenarios.** **Our second contribution is that we further extend our method to other domains with minimal modification, including imbalanced learning, base-to-new generalization, and unsupervised learning.** Our method also achieves superior results in these areas, demonstrating its wide-ranging effectiveness.
> **[Q2].** The insightful analysis of the underlying mechanisms of our method
**[A2].** We attribute the superiority of GDA to its Gaussian assumption. On the one hand, this assumption narrows down the parameter search space, reducing the risk of model overfitting. On the other hand, it introduces covariance into the score calculation (i.e., the $\mu_i^T\Sigma^{-1}x$ term in Eq.5), measuring the anisotropy of space. Previous methods, in contrast, only optimized the similarity between features and corresponding class weights ($w_i^Tx$), overlooking the importance of features in different dimensions. For a comparison, we set the covariance in our method to the identity matrix. The results, as shown in the table below, indicate a significant decline in method performance, yielding results similar to Tip-Adapter.
|Method|Pets|Flo|FGVC|DTD|EuroSAT|Cars|Food|SUN|Cal|UCF|IN|Avg|
|-|-|-|-|-|-|-|-|-|-|-|-|-|
|Tip-Adapter|88.14|89.89|29.76|60.93|70.54|66.77|77.83|66.85|90.18|70.58|62.01|70.32|
|Ours (cov=I)|86.76|86.21|26.26|60.83|74.19|67.24|78.01|68.04|90.70|74.03|61.75|70.37|
|Ours|**88.81**|**95.72**|**40.61**|**66.51**|**86.12**|**75.12**|**79.05**|**70.70**|**92.55**|**77.53**|**63.82**|**76.05**|
> **[Q3].** How sensitive is the method w.r.t. the hyperparamter $\alpha$?
**[A3].** The following table analyses the sensitivity of the hyperparameter $\alpha$, which has been updated in the supplementary materials of the paper. From the results, it can be observed that our approach is relatively stable with respect to $\alpha$. Except for $\alpha=1$, the average performance across 11 datasets remains around 75.5. Even when all $\alpha$ is set to 10, the model only experiences a marginal drop of 0.7 points, still outperforming CoOp (73.42) and Tip-Adapter (70.32).
|Method|Pets|Flo|FGVC|DTD|EuroSAT|Cars|Food|SUN|Cal|UCF|IN|Avg|
|-|-|-|-|-|-|-|-|-|-|-|-|-|
|Ours (alpha=1)|88.81|89.32|31.10|67.65|85.87|67.54|79.05|66.73|92.55|77.53|61.79|73.45|
|Ours (alpha=3)|87.35|95.18|38.20|67.42|85.86|74.07|77.80|70.15|92.63|78.53|63.19|75.49|
|Ours (alpha=5)|86.45|95.67|39.72|67.18|85.85|75.45|76.58|70.81|90.13|78.24|63.73|75.44|
|Ours (alpha=7)|85.71|95.90|40.36|67.00|85.82|75.82|75.76|70.97|91.97|77.84|63.91|75.55|
|Ours (alpha=9)|85.36|95.99|40.63|66.86|85.80|75.62|75.17|70.79|91.94|77.59|63.88|75.42|
|Ours (alpha=10)|85.26|95.72|40.69|66.51|86.12|75.12|74.94|70.70|91.90|77.53|63.82|75.30|
|Ours (paper)|88.81|95.72|40.61|66.51|86.12|75.12|79.05|70.70|92.55|77.53|63.82|76.05|
Hope our response can address your concerns.
With best regards,
Authors of submission 2168