FAST: A Dual-tier Few-Shot Learning Paradigm for Whole Slide Image Classification

The expensive fine-grained annotation and data scarcity have become the primary obstacles for the widespread adoption of deep learning-based Whole Slide Images (WSI) classification algorithms in clinical practice. Unlike few-shot learning methods in natural images that can leverage the labels of each image, existing few-shot WSI classification methods only utilize a small number of fine-grained labels or weakly supervised slide labels for training in order to avoid expensive fine-grained annotation. They lack sufficient mining of available WSIs, severely limiting WSI classification performance. To address the above issues, we propose a novel and efficient dual-tier few-shot learning paradigm for WSI classification, named FAST. FAST consists of a dual-level annotation strategy and a dual-branch classification framework. Firstly, to avoid expensive fine-grained annotation, we collect a very small number of WSIs at the slide level, and annotate an extremely small number of patches. Then, to fully mining the available WSIs, we use all the patches and available patch labels to build a cache branch, which utilizes the labeled patches to learn the labels of unlabeled patches and through knowledge retrieval for patch classification. In addition to the cache branch, we also construct a prior branch that includes learnable prompt vectors, using the text encoder of visual-language models for patch classification. Finally, we integrate the results from both branches to achieve WSI classification. Extensive experiments on binary and multi-class datasets demonstrate that our proposed method significantly surpasses existing few-shot classification methods and approaches the accuracy of fully supervised methods with only 0.22$\%$ annotation costs. All codes and models will be publicly available on https://github.com/fukexue/FAST.

Paper

References (62)

Scroll for more · 38 remaining

Similar papers

Peer review

Reviewer x5Ho5/10 · confidence 5/52024-06-17

Summary

This paper proposes a few-shot learning approach for WSI (Whole-Slide Image) classification. This approach, built upon Tip-Adapter, leverages a cache branch to memorize the knowledge from few-shot instances and then retrieve label information from the cached knowledge. In addition, a prior branch, which utilizes the knowledge from CLIP and GPT4-V, is built to boost the predictive performance. The experiments on two WSI datasets show the superiority of the proposed method over the original Tip-Adapter and Tip-Adapter-F.

Strengths

- Originality. This paper explores the few-shot setting in the context of WSI classification. It is under-studied in the field of computational pathology. - Significance. This work shows that the proposed approach could obtain a performance near that of fully supervised learning, only with a few labeled instances. Overall, it is an interesting work worthy of investigation in computational pathology, given that labeling WSIs at pixel level is extremely time-consuming and labor-expensive. - Quality. This work presents a good experimental design. Its experiments are conducted from different angles to verify the effectiveness of the proposed algorithms.

Weaknesses

In summary, my main concerns lie in (1) writing quality, (2) limited technical contribution, and (3) missing experimental comparisons with important vision-language-based models in computational pathology. Based on these critical weaknesses, it may be hard to recommend accepting this paper to NeurlPS. The details are given below: - This paper is overall rough and sub-par in writing, requiring substantial improvements in clarity. Some obvious flaws are as follows: i) slice-label in line 102, ii) a efficient annotation strategy in line 111, iii) undefined V in line 160, iv) some undefined notations in Section 3.2, and v) some citation errors such as [20]. The authors are encouraged to check these errors and improve their presentation for better academic communication. - The technical novelty is quite limited. Most key designs of the proposed approach have been proposed in Tip-Adapter (Zhang et al., ECCV 2022). Compared to Tip-Adapter, the proposed approach does not present valuable or substantial technical contributions, since its two crucial components, few-shot knowledge retrieval in the cache branch and the prior branch, seem borrowed from Tip-Adapter. - The authors claim that their work differs significantly from Tip-Adapter (line 142) because the key-value cache model built by Tip-Adapter only allows the key to be learnable; in contrast, their approach allows both the key and the value to be learnable. The authors are encouraged to rephrase this sentence, as i) also allowing the value to be learnable should not be called a significant modification from my humble understanding; ii) Tip-Adapter actually has proposed to use a learnable value in the key-value cache model but it leads to collapse during training. Moreover, given that the learnable value leads to collapsed training in Tip-Adapter, could the authors explain to readers why their methods can avoid collapsed training? - Some important vision-language-based models in computational pathology are not cited and compared to the proposed methods, such as **PLIP** (Huang et al., Nature Medicine, 2023) and **CONCH** (Lu et al., Nature Medicine, March 2024). These models show exciting zero-shot performance in WSI classification combined with MI-Zero. The proposed approach should at least show better performance than their zero-shot performance. It could be crucial for justifying the value and significance of this work. Minor issues: - It is suggested to rewrite Section 3.2 to make sure that all notations (those in texts and figures) and the implementation of components are clear and well-explained. - The original Tip-Adapter is proposed for traditional single-instance settings. Its implementation for few-shot WSI classification is not clear.

Questions

- Few-shot instances are randomly selected from the core set. Since only a few instances, e.g. 16, are selected from a very large instance pool and pathological patches (instances) often present heterogeneity, the final selected instance set could have a large variety and thus lead to unstable performances, calling into question the usability of the proposed method. This could also be observed from Fig 3 in the paper. So, the authors are encouraged to analyze and discuss the impact of randomly selected few-shot instances. - The original TCGA-RCC is not annotated at the pixel level. This work does a good job in terms of annotating the fine-grained region-of-interest of WSIs. However, if the annotation is not made public, this work would be difficult to follow and be very limited in research impact. The authors are encouraged to make their annotated dataset public. I would like to raise my score if the authors could resolve my concerns & questions above. ---------------------------------------------After Rebuttal------------------------------------------------- My main concerns have been addressed. I am happy to increase my score.

Rating

5

Confidence

5

Soundness

2

Presentation

1

Contribution

2

Limitations

There is no explicit limitation that should be included in the paper.

Authorsrebuttal2024-08-07

Part2: Rebuttal by Authors

$\textbf{Q5:}$ It is suggested to rewrite Section 3.2 to make sure that all notations (those in texts and figures) and the implementation of components are clear and well-explained. $\textbf{R5:}$ Thanks for your great suggestion on improving the quality of our manuscript. Firstly, we have revised the corresponding errors according to the suggestions in $\textbf{Q1}$. Secondly, we have corrected line 180 from “$\tilde{y}^{\text{cache}} = f_{\text{train}} F_{\text{train}}^T Y_{\text{train}}^I $” to “$\tilde{y}^{\text{cache}} = f_{\text{train}} F_{\text{train}}^T {Y_{\text{train}}^I}^ {{\prime}{\prime}}$”. We have also added the definition of $P_{\text{train}}$ as follows. $P_{\text{train}} = [\{ p_{(1, L+1)}, p_{(1, L+2)}, \ldots, p_{(1, K_1)}\}, \{ p_{(2, L+1)}, p_{(2, L+2)}, \ldots, p_{(2, K_2)} \}, \ldots, \{ p_{(i, L+1)}, p_{(i, L+2)}, \ldots, p_{(i, K_i)} \} ]$ represents the pseudo-labels of all unannotated instances in ${{X}_{\text{train}}}^{\prime}$, where $p$ is a learnable high-dimensional vector. $\textbf{Q6:}$ The original Tip-Adapter is proposed for traditional single-instance settings. Its implementation for few-shot WSI classification is not clear. $\textbf{R6:}$ We apologize for any inconvenience brought to you. We will add the implementation details of the Tip-adapter for few-shot WSI classification tasks to the supplementary materials. Additionally, we will open-source the code to facilitate further research by other researchers. The implementation details are as follows. We conducted experiments according to the settings of the optimal model in the original Tip-Adapter paper. For aspects that cannot be adapted to the few-shot WSI classification task, we used the following approach. 1. We designed a set of text prompts specifically for pathology images, which has been proven superior in the CONCH comparison experiments we conducted. 2. We used all annotated patches to build the cache model. $\textbf{Q7:}$ Few-shot instances are randomly selected from the core set. Since only a few instances, e.g. 16, are selected from a very large instance pool and pathological patches (instances) often present heterogeneity, the final selected instance set could have a large variety and thus lead to unstable performances, calling into question the usability of the proposed method. This could also be observed from Fig 3 in the paper. So, the authors are encouraged to analyze and discuss the impact of randomly selected few-shot instances. $\textbf{R7:}$ We apologize for any inconvenience brought to you. In our constructed cache model, not only does it include a few labeled patches, but it also contains a large number of unlabeled patches, making our model relatively stable. Additionally, as shown in Figure 3, when the instance shot reaches 16, the variance becomes relatively small. $\textbf{Q8:}$ The original TCGA-RCC is not annotated at the pixel level. This work does a good job in terms of annotating the fine-grained region-of-interest of WSIs. However, if the annotation is not made public, this work would be difficult to follow and be very limited in research impact. The authors are encouraged to make their annotated dataset public. $\textbf{R8:}$ Thank you very much for your suggestions on our work. To promote progress and development in the community, we will release the relevant datasets available for academic research.

Reviewer x5Ho2024-08-09

Reply to the Authors' Rebuttal

Thanks for the authors' efforts and responses. After carefully reading the replies, I still have the following concerns: - **R2**: I am more concerned with the technical novelty since the proposed framework does incremental work to the existing Tip-Adapter. By the way, I do acknowledge the novelty of the two-level few-shot learning paradigm, as I mentioned in the Strengths. - **R4**: Thanks for the experimental results. These results could be helpful to justify the value of this work. However, I cannot agree with the authors' claims made in R4. - "*Compared to CONCH, FAST significantly outperforms CONCH in the average bag-level classification AUC*". Is there any statistical test to verify the significance difference between the AUC of 0.9235 and 0.9141? Or, does this conclusion just come from a personal sense? I think in scientific research the conclusion given by the authors must be rigorous enough. - "*while CONCH relies on 1.17 million pairs of pathology images based on CoCa, resulting in a significantly high training cost.*". CONCH is a foundational model for pathology, just like CLIP. Here, discussing its efficacy and comparing it with the proposed FAST is not appropriate, because I) foundation models generally rely on massive data and large-scale pretraining, and ii) FAST also stands on the shoulder of such foundation models like GPT and CLIP, right? - Additionally, I mentioned a comparison with CONCH. It intends to encourage the authors to justify the significance and value of this work, not to question the validity of the experiments. Concretely, for example, if the foundational model, CONCH, could achieve an accuracy of 90% in zero-shot settings yet the FAST framework with CONCH only obtains 90.5% in few-shot settings, the improvement would be too marginal to demonstrate the value of the proposed few-shot FAST. - "*Therefore, our method can be effectively combined with methods such as PLIP and CONCH to further enhance WSI classification performance.*". I failed to find the experiments on FAST + CONCH and see the improvements, so I think this claim, *i.e.*, it can further enhance WSI classification performance, may not be valid from my point of view. - **R6**: I cannot figure out the authors' implementation for Tip-Adapter in few-shot WSI classification, after carefully reading the authors' instructions. Could the authors please explain more? Thanks. - **R7**: The authors mention that the model is relatively stable because the cache model includes a few labeled patches and a large number of unlabeled patches. It seems not obvious to me, since I just don't understand the logic behind the cause and consequence provided by the authors.

Authorsrebuttal2024-08-10

Response to the Remaining Concerns from Reviewer x5Ho

Thank you very much for your rapid response, which is crucial for improving the quality of our manuscript. $\textbf{Response to R2:}$ First, we sincerely appreciate the reviewer’s recognition of our innovation in the dual-tier few-shot learning paradigm, which is meaningful for WSI classification. Additionally, when Tip-adapter is applied to WSI classification, it faces challenges such as the inability to fully utilize WSI data and the issue of huge size. For the former, directly adopting the methods from Tip-adapter to fully utilize WSI data would lead to instability in training, as mentioned in response to an earlier question. To address this, we proposed a cache model where both labels and features are learnable, with the labels of annotated patches being frozen while those of unannotated patches remain learnable. This effectively alleviates the issue of Tip-adapter being unable to fully utilize WSI data. For the latter, we introduced a core set construction method that effectively addresses the challenge of training on entire WSIs caused by their huge size. Overall, our model design is inspired by Tip-adapter, but it is not entirely identical to Tip-adapter. $\textbf{Response to R4:}$ We are very grateful for the problems pointed out by the reviewer, as they have been extremely helpful in improving the quality of our manuscript. The last three questions are closely related, so we will answer them together in response 2. 1. In the final version of the paper, we will revise “Compared to CONCH, FAST significantly outperforms CONCH in the average bag-level classification AUC” to “Compared to CONCH, FAST outperformed CONCH by 0.0094 in the average bag-level classification AUC.” 2. First, I would like to provide a brief explanation of PLIP and CONCH. PLIP is a version of CLIP fine-tuned on large-scale pathological data. Similar to CONCH, which is trained based on the large-scale vision-language model CoCa. Secondly, we apologize for any inconvenience caused. Below, we present the experimental results of our method combined with CONCH. As shown in the table A5, when the bag shot is 1 and the instance shot is 16, FAST-CONCH improves the instance-level AUC by 0.1227 and the bag-level AUC by 0.1485 compared to FAST-CLIP. When the bag shot is 16 and the instance shot is 16, FAST-CONCH improves the instance-level AUC by 0.0615 and the bag-level AUC by 0.1373 compared to FAST-CLIP. CONCH achieved a bag-level classification AUC of 0.7113 on the CAMELYON16 dataset. In comparison, FAST-CONCH improved this by 0.2457. $\textbf{Table A5: Results of using CONCH on CAMELYON16 dataset.}$ | Bag Shot | Instance Shot | Methods | Instance-level AUC | Bag-level AUC | | :---: | :---: | :---: | :---: | :---: | | 0 | 0 | CONCH | $0.8929$ | $0.7113$ | | 1 | 16 | FAST-CLIP | $0.8400 \pm 0.0335$ | $0.6933 \pm 0.0846$ | | 1 | 16 | FAST-CONCH | $0.9627 \pm 0.0132$ | $0.8418 \pm 0.0734$ | | 2 | 16 | FAST-CLIP | $0.8584 \pm 0.0380$ | $0.7595 \pm 0.0391$ | | 2 | 16 | FAST-CONCH | $0.9667 \pm 0.0115$ | $0.8399 \pm 0.0556$ | | 4 | 16 | FAST-CLIP | $0.8864 \pm 0.0563$ | $0.7359 \pm 0.0853$ | | 4 | 16 | FAST-CONCH | $0.9763 \pm 0.0036$ | $0.9326 \pm 0.0175$ | | 8 | 16 | FAST-CLIP | $0.9060 \pm 0.0074$ | $0.7742 \pm 0.0249$ | | | 8 | 16 | FAST-CONCH | $0.9792 \pm 0.0024$ | $0.9507 \pm 0.0058$ | | 16 | 16 | FAST-CLIP | $0.9151 \pm 0.0200$ | $0.8197 \pm 0.0474$ | | 16 | 16 | FAST-CONCH | $0.9766 \pm 0.0036$ | $0.9570 \pm 0.0053$ | $\textbf{Response to R6:}$ In WSI classification, we followed the settings from the original Tip-adapter paper. For aspects that were not directly applicable to WSI classification task, we made the following adjustments: 1. We designed a specific set of text prompts customized for WSI classification task. 2. We used all annotated patches to construct the cache model. Apart from these differences, the settings are consistent with those in the Tip-adapter paper. $\textbf{Response to R7:}$ We sincerely apologize for any confusion we may have caused. We randomly selected a small number of instances from the core set for annotation. The remaining instances in the core set were not annotated but instead were all used in the training of the cached model. During training, the unannotated patches gradually learn the labels used for classification from the annotated patches. Since all patches in the core set are eventually used for model training, our model is relatively stable. The variance observed by the reviewer in Figure 3 comes from the random selection of bags. When the number of bags is 1 or 2, the variance is indeed large. We believe this is reasonable, as it is challenging to fit all the data with just one WSI. When the number of bags is greater than or equal to 4, the variance decreases considerably. Therefore, in practical applications, we recommend selecting 4 bags or more.

Reviewer x5Ho2024-08-12

I would like to thank the authors for their efforts. Most of the time during the rebuttal, I feel inefficient communication in reading the author's responses, as most of these responses often fail to capture the true meaning of my questions and lead to undesirable QA. Yet, overall, most of my concerns have been resolved. Thanks for the authors' experiments provided in the rebuttal. I believe the proposed framework could facilitate the study of few-shot WSI analysis. In view of these, I am happy to increase my score. The authors are encouraged to include the important suggestions & questions into the final version of the paper.

Authorsrebuttal2024-08-13

Thank you very much for your suggestions, which have been extremely helpful in improving the quality of our manuscript. We also sincerely appreciate your recognition of our work and the higher score. We will incorporate the aforementioned content in the camera-ready version of the paper.

Reviewer hypM8/10 · confidence 5/52024-07-03

Summary

To address the challenges of expensive fine-grained annotation and data scarcity encountered in the clinical application of deep learning-based WSI classification methods, this paper proposes a novel and efficient dual-tier few-shot learning paradigm named FAST. Under this new paradigm, the authors introduce a dual-level annotation strategy that includes bag-level few-shot and instance-level few-shot, modeling the WSI classification problem as a new few-shot classification problem. Building on this, the authors further propose a classification framework composed of a learnable image cache branch and a CLIP prior knowledge branch, fully leveraging the value of the limited data and labels. Extensive experimental results show significant improvement over other few shot methods in both binary and multi-class classification tasks. Interestingly, the proposed method FAST achieves performance close to fully supervised methods with only 0.22% of the annotation cost. This showcases its efficiency and great potential for practical applications.

Strengths

1. The paper is well written and easy to read. The authors intuitively demonstrate their methods and contributions through numerous figures and tables. Extensive comparative and ablation experiments illustrate the efficiency and generality of the proposed method. To ensure fairness and prevent randomness, the authors conducted multiple random experiments in their study. The results show significantly better performance in both bag-level and instance-level classification compared to other methods. 2. The proposed dual-level WSI annotation strategy is a highly innovative and suitable method for WSI data annotation. It addresses the issues of single-level annotation and provides patch-level supervisory information at a cost close to slide-level annotation. Compared to fully supervised methods, the proposed method has significantly lower annotation costs, astonishingly reaching as low as one-thousandth or even one-ten-thousandth. 3. This paper is inspired by Tip-adapter and proposes a learnable cache branch where both labels and image features are learnable. The final classification framework further integrates a CLIP prior knowledge branch incorporating GPT-4V. Comparative experiments show that this method achieves performance close to fully supervised methods with only 0.2% of the data annotation cost, which is an exciting advancement. Ablation experiments also demonstrate the importance of the proposed components.

Weaknesses

1. The function ϕ(∙) in Figure 2 is not mentioned or explained in the paper, which may confuse readers. 2. The authors conducted extensive comparisons in terms of accuracy and annotation cost but lacked analysis of time and memory consumption. 3. In section 3.2, the authors mention obtaining the optimal fusion weight α through grid search but lack specific details in the paper.

Questions

Will the authors open source the relevant code and all model weights for this project? For other issues, please refer to the weaknesses.

Rating

8

Confidence

5

Soundness

3

Presentation

3

Contribution

4

Limitations

In the conclusion section, the authors acknowledge the limitations of their proposed method. I agree that such limitations exist and look forward to future work.

Reviewer HxPT6/10 · confidence 3/52024-07-08

Summary

In this article, the authors propose a novel few-shot learning paradigm for WSI classification. This paradigm is based on two branches: the first is a learnable cache model that utilizes both labeled and unlabeled instance data, and the second, the Prior Branch, leverages the prior knowledge of a pre-trained CLIP model. By combining these two branches, efficient few-shot learning is achieved, and extensive experiments have been conducted on the CAMELYON16 dataset and the TCGA-RENAL dataset.

Strengths

1. Few-shot learning is inherently important in the field of WSI classification. The authors have proposed a new few-shot learning paradigm tailored for WSI classification and have achieved notable results. 2. The experiments on few-shot learning are quite comprehensive, thoroughly comparing the effects of different numbers of instances and bags.

Weaknesses

1. The study lacks experiments with V-L models specific to the pathology field. Since CLIP is not originally based on pathology images, the authors should include comparisons using PLIP [1] and CONCH [2]. 2. The few-shot learning method proposed by the authors operates at both the instance-level and bag-level. Therefore, the comparative methods should include both instance-based methods and bag-level methods (multi-instance learning). However, the fully supervised methods chosen for comparison are only instance-based. The authors should supplement their comparisons with bag-level methods based on multi-instance learning, such as R2T [3]. 3. Comparing the third and fourth rows in Table 3 of the paper reveals that adding the Prior Branch on top of existing components brings almost no improvement. However, it requires first processing through GPT and then the Text-encoder, significantly increasing the cost without enhancing performance. [1] PLIP: A visual–language foundation model for pathology image analysis using medical Twitter. Nature Medicine 2023 [2] CONCH:A Vision-Language Foundation Model for Computational Pathology. Nature Medicine 2024 [3] Feature Re-Embedding: Towards Foundation Model-Level Performance in Computational Pathology. CVPR 2024

Questions

What the difference between the proposed work and previous few-shot WSI classification methods like [4]? [4] The rise of ai language pathologists: Exploring two-level prompt learning for few-shot weakly-supervised whole slide image classification. NeurIPS 2023

Rating

6

Confidence

3

Soundness

3

Presentation

3

Contribution

3

Limitations

The authors only tested up to 16 instances and bags, but there is still a significant performance improvement from 8 to 16. I am curious at what data ratio in few-shot learning the model will begin to overfit.

Authorsrebuttal2024-08-09

Experiments with V-L models specific to the pathology field

Thank you very much for your valuable suggestions. We have implemented FAST using the vision-language model CONCH from the pathology field and conducted experiments on the CAMELYON16 dataset. The experimental results are shown in Table A4. We define the method using CLIP as the feature extractor as FAST-CLIP, and the method using CONCH as the feature extractor as FAST-CONCH. As shown in Table A4, compared to using CLIP as the feature extractor, using CONCH significantly improves the classification performance of FAST. Notably, the bag-level classification AUC can reach 0.957. This indicates that our method not only integrates well with V-L models like CLIP in natural images for WSI classification but also enhances the classification performance of V-L models in pathology. $\textbf{Table A4: Results of using CONCH on CAMELYON16 dataset.}$ | Bag Shot | Instance Shot | Methods | Instance-level AUC | Bag-level AUC | | :---: | :---: | :---: | :---: | :---: | | 1 | 16 | FAST-CLIP | $0.8400 \pm 0.0335$ | $0.6933 \pm 0.0846$ | | 1 | 16 | FAST-CONCH | $0.9627 \pm 0.0132$ | $0.8418 \pm 0.0734$ | | 2 | 16 | FAST-CLIP | $0.8584 \pm 0.0380$ | $0.7595 \pm 0.0391$ | | 2 | 16 | FAST-CONCH | $0.9667 \pm 0.0115$ | $0.8399 \pm 0.0556$ | | 4 | 16 | FAST-CLIP | $0.8864 \pm 0.0563$ | $0.7359 \pm 0.0853$ | | 4 | 16 | FAST-CONCH | $0.9763 \pm 0.0036$ | $0.9326 \pm 0.0175$ | | 8 | 16 | FAST-CLIP | $0.9060 \pm 0.0074$ | $0.7742 \pm 0.0249$ | | | 8 | 16 | FAST-CONCH | $0.9792 \pm 0.0024$ | $0.9507 \pm 0.0058$ | | 16 | 16 | FAST-CLIP | $0.9151 \pm 0.0200$ | $0.8197 \pm 0.0474$ | | 16 | 16 | FAST-CONCH | $0.9766 \pm 0.0036$ | $0.9570 \pm 0.0053$ |

Reviewer HxPT2024-08-14

Thanks for the authors responce and further experiments. My questions are addressed, and I will rise the score.

Authorsrebuttal2024-08-14

Thank you very much for your suggestions, which have greatly helped improve the quality of our manuscript. We sincerely appreciate your recognition of our work and the higher score. We will include the aforementioned content in the camera-ready version of the paper.

Reviewer Bx9c7/10 · confidence 5/52024-07-10

Summary

This paper investigates the issue of Whole Slide Images (WSI) classification, a study with practical value. It proposes a new working paradigm that is an improvement based on Tip-Adapter. Theoretically, this new paradigm can effectively address the problem and has strong scalability.

Strengths

This study has practical significance, and the proposed method demonstrates strong scalability. The paper is clearly written and easy to understand, with comprehensive experiments.

Weaknesses

1. This paper lacks some important related work. The proposed method is based on the Tip-Adapter. While, there are many improvements based on Tip-Adapter, such as [1-4]. I think the experiments should include comparisons with these related methods, or at the very least, mention and briefly analyze them. [1] Collaborative Consortium of Foundation Models for Open-World Few-Shot Learning. AAAI, 2024. [2] Prompt, Generate, then Cache: Cascade of Foundation Models makes Strong Few-shot Learners. CVPR, 2023. [3] DeIL: Direct-and-Inverse CLIP for Open-World Few-Shot Learning. CVPR, 2024. [4] Not All Features Matter: Enhancing Few-shot CLIP with Adaptive Prior Refinement. ICCV, 2023. 2. In Figure 1, the blue and red boxes should be explained. Additionally, if space permits, I suggest that in future work, the authors could add more detailed descriptions in the caption. By this way, readers can understand the general idea of the method just by looking at the figure and caption, without having to spend effort finding the corresponding description in the main text. 3. For instance-shot, only the results of 16-shot are shown, without the results of 1-shot, 2-shot, etc. 4. Line 160 seems to have a typo; it should be y_1L instead of y_1V.

Questions

see weakness

Rating

7

Confidence

5

Soundness

4

Presentation

4

Contribution

3

Limitations

authors didn't present the limitation.

Reviewer hypM2024-08-10

Thank you for your rebuttal, which clearly addressed my concerns.

Thank you for your rebuttal, which clearly addressed my concerns. I have read other reviewers' comments and the author's rebuttal, particularly the comparison with vision-language-based models in computational pathology. The experimental results and the authors’ responses clearly and effectively demonstrate the contribution of this paper. Overall, the authors' rebuttal resolves my concerns, and their answers to other reviewers' questions also seem reasonable to me. I think this paper is highly valuable for advancing computational pathology. Thus, I increase my rating to strong accept.

Authorsrebuttal2024-08-13

Thank you very much for your suggestions, which have been extremely helpful in improving the quality of our manuscript. We also sincerely appreciate your recognition of our work and the higher score. We will incorporate the aforementioned content in the camera-ready version of the paper.

Reviewer Bx9c2024-08-11

Response to the Authors

Thanks for the authors' responses. The author has resolved my questions and I agree to accept this paper.

Authorsrebuttal2024-08-13

Thank you very much for your suggestions, which have been extremely helpful in improving the quality of our manuscript. We also sincerely appreciate your recognition of our work and the higher score. We will incorporate the aforementioned content in the camera-ready version of the paper.

Program Chairsdecision2024-09-25

Decision

Accept (poster)

© 2026 NYSGPT2525 LLC