REVIEW 3 major objections 4 minor 60 references
Curriculum Fine-tuning of Vision Foundation Model for Medical Image Classification Under Label Noise
T0 review · 3 major / 4 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read CUFIT, a curriculum fine-tuning paradigm, uses a frozen linear probe to select clean samples for two adapters and reports consistent gains over prior noisy-label methods on four medical benchmarks.
desk verdict CUFIT is a sensible and likely-reproducible method with real gains, but the 60%-noise mechanism claim is overstated and the missing error bars and baseline details need referee attention. 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 object is the three-module curriculum LPM→IAM→LAM with the agreement criterion as the selection rule: a training sample is treated as clean when the selecting module's argmax prediction equals the annotated label. The linear probing module never updates the frozen vision foundation model, so its selections stay stable under label noise; the intermediate adapter module adapts the features and selects a larger clean set; the last adapter module is trained on that set and used for final predictions. The chain needs no noise-rate hyperparameter and applies to any adapter inserted into a frozen transformer.
What would settle it
Compute the precision of the samples selected by the linear probing module on a synthetic 60% symmetric-noise version of any of the four medical benchmarks; if that selected set is not majority clean, meaning precision falls to 50% or below, the curriculum's input is corrupted and CUFIT's reported advantage would be expected to disappear.
Extended reading notes
Core claim
The central discovery is that the resistance of linear probing to label noise can be converted into a training curriculum for adapters. Given a frozen pretrained vision foundation model, CUFIT trains a linear classifier on all samples; this linear probing module (LPM) selects as clean any sample whose predicted class equals its annotation (the agreement criterion). Those samples train an intermediate adapter module (IAM), which in turn selects clean samples for the last adapter module (LAM). Because the LPM improves precision and the IAM improves recall relative to it, the curriculum expands the clean set available to the final classifier. In the paper's experiments on four simulated noisy medical benchmarks and one real-world noisy retina benchmark, this scheme outperforms prior sample-selection baselines and stays effective at 60% and even 80% noise.
Load-bearing premise
The load-bearing premise is that a sample whose label agrees with the current module's prediction is genuinely clean; this requires the true label to be the module's most common prediction within each annotated class, which is not guaranteed at the 60% symmetric-noise rate tested.
Editorial extensions
If this is right
- At 40% symmetric noise, CUFIT improves over the next-best baselines by 5.0, 2.1, 4.6, and 5.8 accuracy points on HAM10000, APTOS-2019, BloodMnist, and OrgancMnist.
- Gains over the strongest sample-selection baseline widen as noise rises, from about 0.7 point at 10% noise to 4.0 points at 60% noise on HAM10000.
- On the real-world Kaggle-EyePACS noisy retina training set, CUFIT achieves the highest combined accuracy on the APTOS-2019 and FGADR test sets, 64.4% versus 63.9% for the next method.
- The same curriculum lifts accuracy under 80% symmetric noise on CIFAR-10 and CIFAR-100 and on the real-world ANIMAL10N benchmark, so the mechanism is not restricted to medical images.
- Because CUFIT works across several vision foundation models and several adapter types, the curriculum itself, not a particular adapter, is the source of the reported gain.
Reading between the lines
- The agreement criterion's real requirement is that the true label be the linear probe's modal prediction within each annotated class; under symmetric noise above 50% this is stricter than the paper's majority-clean phrasing and is directly measurable, so the method's failure boundary could be mapped empirically.
- Because the selection modules and the adapter can be swapped independently, CUFIT-like curricula could be applied to other parameter-efficient fine-tuning methods or to any frozen backbone in domains far from medical imaging; nothing in the design is medical-specific.
- One could decouple the curriculum from the hard argmax match by using the linear probe's confidence as a threshold, tuning the precision-recall balance of the selected clean set and potentially pushing the method past the 60% noise regime reported.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes CUFIT, a curriculum fine-tuning paradigm for vision foundation models under label noise. A linear probing module is trained on all samples; an intermediate adapter module is trained only on samples whose linear-probe argmax agrees with the annotation; a final adapter module is trained on samples selected by the intermediate adapter. At inference, only the last adapter is used. Experiments on four medical datasets with symmetric noise rates of 10-60%, on a real-world noisy retinopathy benchmark, and on natural image benchmarks compare against full fine-tuning, linear probing, Rein, Co-teaching, JoCor, and CoDis. Table 1 reports consistent gains, e.g., 5.0%, 2.1%, 4.6%, and 5.8% at 40% noise on HAM10000, APTOS-2019, BloodMnist, and OrgancMnist, and Section 6 analyzes label precision/recall, adapter/backbone variations, and CNN baselines.
Significance. If the empirical claims are supported, the contribution is practically valuable: it shows that frozen VFM features can drive clean-sample selection without a noise-rate hyperparameter, and the curriculum ordering (linear probe then adapters) is simple and general. Strengths include public code, evaluation on external test sets, no fitted constants in the selection criterion, and process-level diagnostics in Figure 3 that show higher label precision and recall than CoDis at 40% noise. The main gaps are the missing empirical support for the 60% noise claims and the absence of any variance reporting; both are addressable by additional experiments. I find no circularity in the evaluation, since the reported accuracies are measured on held-out test sets.
major comments (3)
- [Sec. 4.2, Eqs. (6)-(7); Table 1 at noise rate 0.6] The justification for the agreement criterion is that clean labels are in the majority within a noisy class. Under the symmetric noise model used in Sec. 5.1, at r=0.6 each observed class contains, in expectation, 40% clean and 60% noisy samples, so the stated premise is false. The selection rule could still work if the classifier's argmax is a better predictor of the true label than the observed annotation, i.e., if the true class is the modal prediction because wrong labels are spread over k-1 classes, but this condition is neither stated in Sec. 4.2 nor verified empirically. Figure 3 reports label precision/recall only at 40% noise, and Table 1 reports only final test accuracy; the 60% rows, including the large BloodMnist margin (98.2 vs 88.7), are therefore not backed by the mechanism described. Please add selected-set precision/recall at 60% noise (or an equivalent diagnostic) and either prove or empirically test the modal-prediction condition.
- [Tables 1-4] No standard deviations, confidence intervals, or number of seeds are reported; the values are stated only as test accuracy averaged over the last ten epochs. Without across-seed variability, the abstract's specific margins (e.g., 5.0%, 2.1%, 4.6%, and 5.8% at 40% noise) cannot be distinguished from run-to-run variation. Because the paper's central claim is comparative, report mean and standard deviation over at least three seeds for the main tables, or otherwise justify the stability of the margins.
- [Sec. 5.1, Baselines] Co-teaching, JoCor, and CoDis are two-network methods, but the manuscript does not specify how these baselines are instantiated with DINOv2 and the Rein adapter. It is unclear whether each of the two networks has its own frozen VFM backbone and adapter, whether they share the frozen backbone, and how the noise-rate hyperparameter required by these methods is set for the simulated benchmarks (and for the real-world benchmark via the estimation method of [56]). Without these details, the fairness of the comparison cannot be assessed. Please document the exact two-network setup and hyperparameter choices, and ideally release the baseline code.
minor comments (4)
- [Sec. 5.2] The sentence claiming CUFIT achieves '0.85% relateively higher accuracy' than CoDis at 10% noise and '3.7%' at 60% noise on HAM10000 does not match Table 1 (82.6 vs 81.9 is 0.7 percentage points; 70.1 vs 66.1 is 4.0 percentage points). Correct the numbers or state explicitly that they are relative improvements.
- [Table 3] The header row is malformed, with entries like 'DINOv2ResNet' that make it hard to distinguish ResNet and DINOv2 columns. Also, the HAM10000 full-training DINOv2 value at 0.2 noise is 66.5 here but 62.6 in Table 1; the discrepancy should be resolved.
- [Sec. 6.2] The paragraph says 'we utilize four backbones' and lists BioMedCLIP and LoRA, while the preceding sentence and the Figure 4 caption describe three VFMs and three adapters. Please align the text with the figure.
- [Sec. 4] The text says that the modules are trained simultaneously on the current batch, while Figure 2 and the notation LPM→IAM→LAM suggest strictly sequential training; please clarify the temporal relationship.
Circularity Check
No circularity: CUFIT's selection rule is self-referential only in the standard sample-selection sense, and every reported performance claim is anchored to external test sets and independent noise ground truth; the 60% majority-assumption flaw is an empirical concern, not a circular reduction.
full rationale
I traced the derivation chain of CUFIT. The only load-bearing selection mechanism is the agreement criterion in Eqs. (6)-(7), where a sample is selected as clean if the current module's argmax equals its annotation. This is self-referential in the usual sample-selection sense—the model selects its own training data—but the paper does not define any reported success metric as this agreement. The headline results in Tables 1, 2, and 4 are held-out test accuracies on external benchmark splits, and Figure 3's label precision/recall are computed against known synthetic noise, so the reported quantities are not equal to the selection rule by construction. No fitted hyperparameter is renamed as a prediction; the method explicitly avoids noise-rate estimation. The paper cites prior work for VFMs, adapters, and co-teaching, but there are no self-citations, and no cited result is used as the sole justification for the central empirical claim. The one substantive weakness, flagged in Section 4.2, is that the stated premise 'clean labels are in the majority within a noisy class' is arithmetically false for the 60% symmetric noise setting tested in Section 5.1; however, this is an empirical support problem (the selection mechanism may still work via modal prediction, but the paper does not measure selected-set precision at 60%), not a circular derivation. The 60% rows in Table 1 are external test numbers that could be disconfirmed without the method becoming tautological. Section 5.1 also explicitly scopes out loss-modifying SOTA methods, which limits the comparison but does not introduce circularity. Therefore no circular step can be exhibited, and the correct finding is no significant circularity.
Assumptions & free parameters
assumptions (4)
- domain assumption Clean labels are in the majority within a noisy class, so agreement between prediction and annotation identifies clean samples (Sec 4.2).
- domain assumption Linear probing of a frozen VFM is robust to noisy labels because the feature extractor is not updated (Sec 1, Fig. 1).
- domain assumption Clean samples are easier to classify and are memorized before noisy ones, so small-loss/agreement selection generalizes (Sec 2, inherited from Co-teaching literature).
- domain assumption The selected benchmark noise (symmetric 10-60%) approximates real clinical label noise.
Cite this review
Pith. "Pith review of Curriculum Fine-tuning of Vision Foundation Model for Medical Image Classification Under Label Noise." pith.science (2026). https://pith.science/paper/2OKQSQND
@misc{pith2026241200150,
author = {Pith},
title = {Pith review of: Curriculum Fine-tuning of Vision Foundation Model for Medical Image Classification Under Label Noise},
year = {2026},
howpublished = {\url{https://pith.science/paper/2OKQSQND}},
note = {Machine review of arXiv:2412.00150}
}
read the original abstract
Deep neural networks have demonstrated remarkable performance in various vision tasks, but their success heavily depends on the quality of the training data. Noisy labels are a critical issue in medical datasets and can significantly degrade model performance. Previous clean sample selection methods have not utilized the well pre-trained features of vision foundation models (VFMs) and assumed that training begins from scratch. In this paper, we propose CUFIT, a curriculum fine-tuning paradigm of VFMs for medical image classification under label noise. Our method is motivated by the fact that linear probing of VFMs is relatively unaffected by noisy samples, as it does not update the feature extractor of the VFM, thus robustly classifying the training samples. Subsequently, curriculum fine-tuning of two adapters is conducted, starting with clean sample selection from the linear probing phase. Our experimental results demonstrate that CUFIT outperforms previous methods across various medical image benchmarks. Specifically, our method surpasses previous baselines by 5.0%, 2.1%, 4.6%, and 5.8% at a 40% noise rate on the HAM10000, APTOS-2019, BloodMnist, and OrgancMnist datasets, respectively. Furthermore, we provide extensive analyses to demonstrate the impact of our method on noisy label detection. For instance, our method shows higher label precision and recall compared to previous approaches. Our work highlights the potential of leveraging VFMs in medical image classification under challenging conditions of noisy labels.
Figures
Reference graph
Works this paper leans on
-
[56]
Classification with noisy labels by importance reweighting
Tongliang Liu and Dacheng Tao. Classification with noisy labels by importance reweighting. IEEE Transactions on pattern analysis and machine intelligence, 38(3):447–461, 2015
2015
-
[1]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 770–778, 2016
2016
-
[2]
Fast r-cnn
Ross Girshick. Fast r-cnn. In Proceedings of the IEEE international conference on computer vision, pages 1440–1448, 2015
2015
-
[3]
Mask r-cnn
Kaiming He, Georgia Gkioxari, Piotr Dollár, and Ross Girshick. Mask r-cnn. In Proceedings of the IEEE international conference on computer vision, pages 2961–2969, 2017
2017
-
[4]
Tokens-to-token vit: Training vision transformers from scratch on imagenet
Li Yuan, Yunpeng Chen, Tao Wang, Weihao Yu, Yujun Shi, Zi-Hang Jiang, Francis EH Tay, Jiashi Feng, and Shuicheng Yan. Tokens-to-token vit: Training vision transformers from scratch on imagenet. In Proceedings of the IEEE/CVF international conference on computer vision, pages 558–567, 2021
work page 2021
-
[5]
Learning from noisy labels with deep neural networks: A survey
Hwanjun Song, Minseok Kim, Dongmin Park, Yooju Shin, and Jae-Gil Lee. Learning from noisy labels with deep neural networks: A survey. IEEE transactions on neural networks and learning systems, 2022
work page 2022
-
[6]
The unreasonable effectiveness of noisy data for fine-grained recognition
Jonathan Krause, Benjamin Sapp, Andrew Howard, Howard Zhou, Alexander Toshev, Tom Duerig, James Philbin, and Li Fei-Fei. The unreasonable effectiveness of noisy data for fine-grained recognition. In Computer Vision–ECCV 2016: 14th European Conference, Amsterdam, The Netherlands, October 11-14, 2016, Proceedings, Part III 14, pages 301–320. Springer, 2016
work page 2016
-
[7]
A closer look at memorization in deep networks
Devansh Arpit, Stanisław Jastrz˛ ebski, Nicolas Ballas, David Krueger, Emmanuel Bengio, Maxinder S Kan- wal, Tegan Maharaj, Asja Fischer, Aaron Courville, Yoshua Bengio, et al. A closer look at memorization in deep networks. In International conference on machine learning, pages 233–242. PMLR, 2017
work page 2017
Show all 60 references
-
[8]
Robust medical image classification from noisy labeled data with global and local representation guided co-training
Cheng Xue, Lequan Yu, Pengfei Chen, Qi Dou, and Pheng-Ann Heng. Robust medical image classification from noisy labeled data with global and local representation guided co-training. IEEE transactions on medical imaging, 41(6):1371–1382, 2022
2022
-
[9]
Improving medical images classification with label noise using dual-uncertainty estimation
Lie Ju, Xin Wang, Lin Wang, Dwarikanath Mahapatra, Xin Zhao, Quan Zhou, Tongliang Liu, and Zongyuan Ge. Improving medical images classification with label noise using dual-uncertainty estimation. IEEE transactions on medical imaging, 41(6):1533–1546, 2022
2022
-
[10]
Mentornet: Learning data-driven curriculum for very deep neural networks on corrupted labels
Lu Jiang, Zhengyuan Zhou, Thomas Leung, Li-Jia Li, and Li Fei-Fei. Mentornet: Learning data-driven curriculum for very deep neural networks on corrupted labels. In International conference on machine learning, pages 2304–2313. PMLR, 2018
2018
-
[11]
Co-teaching: Robust training of deep neural networks with extremely noisy labels
Bo Han, Quanming Yao, Xingrui Yu, Gang Niu, Miao Xu, Weihua Hu, Ivor Tsang, and Masashi Sugiyama. Co-teaching: Robust training of deep neural networks with extremely noisy labels. Advances in neural information processing systems, 31, 2018
2018
-
[12]
How does disagreement help generalization against label corruption? In International conference on machine learning, pages 7164–7173
Xingrui Yu, Bo Han, Jiangchao Yao, Gang Niu, Ivor Tsang, and Masashi Sugiyama. How does disagreement help generalization against label corruption? In International conference on machine learning, pages 7164–7173. PMLR, 2019
2019
-
[13]
Combating noisy labels by agreement: A joint training method with co-regularization
Hongxin Wei, Lei Feng, Xiangyu Chen, and Bo An. Combating noisy labels by agreement: A joint training method with co-regularization. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 13726–13735, 2020
2020
-
[14]
Combating noisy labels with sample selection by mining high-discrepancy examples
Xiaobo Xia, Bo Han, Yibing Zhan, Jun Yu, Mingming Gong, Chen Gong, and Tongliang Liu. Combating noisy labels with sample selection by mining high-discrepancy examples. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 1833–1843, 2023
2023
-
[15]
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
-
[16]
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. In International conference on machine learning, pa...
2021
-
[17]
Masked autoencoders are scalable vision learners
Kaiming He, Xinlei Chen, Saining Xie, Yanghao Li, Piotr Dollár, and Ross Girshick. Masked autoencoders are scalable vision learners. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 16000–16009, 2022
2022
-
[18]
Segment anything
Alexander Kirillov, Eric Mintun, Nikhila Ravi, Hanzi Mao, Chloe Rolland, Laura Gustafson, Tete Xiao, Spencer Whitehead, Alexander C Berg, Wan-Yen Lo, et al. Segment anything. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 4015–4026, 2023
2023
-
[19]
Dinov2: Learning robust visual features without supervision
Maxime Oquab, Timothée Darcet, Théo Moutakanni, Huy V o, Marc Szafraniec, Vasil Khalidov, Pierre Fernandez, Daniel Haziza, Francisco Massa, Alaaeldin El-Nouby, et al. Dinov2: Learning robust visual features without supervision. arXiv preprint arXiv:2304.07193, 2023. 11
2023 arXiv
-
[20]
Anydoor: Zero-shot object-level image customization
Xi Chen, Lianghua Huang, Yu Liu, Yujun Shen, Deli Zhao, and Hengshuang Zhao. Anydoor: Zero-shot object-level image customization. arXiv preprint arXiv:2307.09481, 2023
2023 arXiv
-
[21]
Stronger, fewer, & superior: Harnessing vision foundation models for domain generalized semantic segmentation
Zhixiang Wei, Lin Chen, Yi Jin, Xiaoxiao Ma, Tianle Liu, Pengyang Ling, Ben Wang, Huaian Chen, and Jinjin Zheng. Stronger, fewer, & superior: Harnessing vision foundation models for domain generalized semantic segmentation. arXiv preprint arXiv:2312.04265, 2023
2023 arXiv
-
[22]
Robustness of sam: Segment anything under corruptions and beyond
Yu Qiao, Chaoning Zhang, Taegoo Kang, Donghun Kim, Shehbaz Tariq, Chenshuang Zhang, and Choong Seon Hong. Robustness of sam: Segment anything under corruptions and beyond. arXiv preprint arXiv:2306.07713, 2023
2023 arXiv
-
[23]
Finding dino: A plug-and-play framework for unsupervised detection of out-of-distribution objects using prototypes
Poulami Sinhamahapatra, Franziska Schwaiger, Shirsha Bose, Huiyu Wang, Karsten Roscher, and Stephan Guennemann. Finding dino: A plug-and-play framework for unsupervised detection of out-of-distribution objects using prototypes. arXiv preprint arXiv:2404.07664, 2024
2024 arXiv
-
[24]
LoRA: Low-rank adaptation of large language models
Edward J Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. LoRA: Low-rank adaptation of large language models. In International Conference on Learning Representations, 2022
2022
-
[25]
Visual prompt tuning
Menglin Jia, Luming Tang, Bor-Chun Chen, Claire Cardie, Serge Belongie, Bharath Hariharan, and Ser-Nam Lim. Visual prompt tuning. In European Conference on Computer Vision , pages 709–727. Springer, 2022
2022
-
[26]
Adapt- former: Adapting vision transformers for scalable visual recognition
Shoufa Chen, Chongjian Ge, Zhan Tong, Jiangliu Wang, Yibing Song, Jue Wang, and Ping Luo. Adapt- former: Adapting vision transformers for scalable visual recognition. Advances in Neural Information Processing Systems, 35:16664–16678, 2022
2022
-
[27]
Swin transformer: Hierarchical vision transformer using shifted windows
Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining Guo. Swin transformer: Hierarchical vision transformer using shifted windows. In Proceedings of the IEEE/CVF international conference on computer vision, pages 10012–10022, 2021
2021
-
[28]
Training data-efficient image transformers & distillation through attention
Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and Hervé Jégou. Training data-efficient image transformers & distillation through attention. In International conference on machine learning, pages 10347–10357. PMLR, 2021
2021
-
[29]
Emerging properties in self-supervised vision transformers
Mathilde Caron, Hugo Touvron, Ishan Misra, Hervé Jégou, Julien Mairal, Piotr Bojanowski, and Armand Joulin. Emerging properties in self-supervised vision transformers. In Proceedings of the IEEE/CVF international conference on computer vision, pages 9650–9660, 2021
2021
-
[30]
Parameter- efficient fine-tuning for medical image analysis: The missed opportunity
Raman Dutt, Linus Ericsson, Pedro Sanchez, Sotirios A Tsaftaris, and Timothy Hospedales. Parameter- efficient fine-tuning for medical image analysis: The missed opportunity. In Medical Imaging with Deep Learning, 2023
2023
-
[31]
Robust loss functions under label noise for deep neural networks
Aritra Ghosh, Himanshu Kumar, and P Shanti Sastry. Robust loss functions under label noise for deep neural networks. In Proceedings of the AAAI conference on artificial intelligence, volume 31, 2017
2017
-
[32]
Early-learning reg- ularization prevents memorization of noisy labels
Sheng Liu, Jonathan Niles-Weed, Narges Razavian, and Carlos Fernandez-Granda. Early-learning reg- ularization prevents memorization of noisy labels. Advances in neural information processing systems, 33:20331–20342, 2020
2020
-
[33]
Symmetric cross entropy for robust learning with noisy labels
Yisen Wang, Xingjun Ma, Zaiyi Chen, Yuan Luo, Jinfeng Yi, and James Bailey. Symmetric cross entropy for robust learning with noisy labels. In Proceedings of the IEEE/CVF international conference on computer vision, pages 322–330, 2019
2019
-
[34]
Generalized cross entropy loss for training deep neural networks with noisy labels
Zhilu Zhang and Mert Sabuncu. Generalized cross entropy loss for training deep neural networks with noisy labels. Advances in neural information processing systems, 31, 2018
2018
-
[35]
Fine samples for learning with noisy labels
Taehyeon Kim, Jongwoo Ko, JinHwan Choi, Se-Young Yun, et al. Fine samples for learning with noisy labels. Advances in Neural Information Processing Systems, 34:24137–24149, 2021
2021
-
[36]
Dividemix: Learning with noisy labels as semi-supervised learning
Junnan Li, Richard Socher, and Steven CH Hoi. Dividemix: Learning with noisy labels as semi-supervised learning. arXiv preprint arXiv:2002.07394, 2020
2002 arXiv
-
[37]
Learning from noisy data with robust representation learning
Junnan Li, Caiming Xiong, and Steven CH Hoi. Learning from noisy data with robust representation learning. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 9485–9494, 2021
2021
-
[38]
when to update
Eran Malach and Shai Shalev-Shwartz. Decoupling" when to update" from" how to update". Advances in neural information processing systems, 30, 2017
2017
-
[39]
Using pre-training can improve model robustness and uncertainty
Dan Hendrycks, Kimin Lee, and Mantas Mazeika. Using pre-training can improve model robustness and uncertainty. In International conference on machine learning, pages 2712–2721. PMLR, 2019
2019
-
[40]
Why is prompt tuning for vision-language models robust to noisy labels? In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 15488–15497, 2023
Cheng-En Wu, Yu Tian, Haichao Yu, Heng Wang, Pedro Morgado, Yu Hen Hu, and Linjie Yang. Why is prompt tuning for vision-language models robust to noisy labels? In Proceedings of the IEEE/CVF International Conference on Computer Vision, pages 15488–15497, 2023. 12
2023
-
[41]
Layer normalization
Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint arXiv:1607.06450, 2016
2016 arXiv
-
[42]
The ham10000 dataset, a large collection of multi-source dermatoscopic images of common pigmented skin lesions
Philipp Tschandl, Cliff Rosendahl, and Harald Kittler. The ham10000 dataset, a large collection of multi-source dermatoscopic images of common pigmented skin lesions. Scientific data, 5(1):1–9, 2018
2018
-
[43]
Deep learning based method for computer aided diagnosis of diabetic retinopathy
Omar Dekhil, Ahmed Naglah, Mohamed Shaban, Mohammed Ghazal, Fatma Taher, and Ayman El- baz. Deep learning based method for computer aided diagnosis of diabetic retinopathy. In 2019 IEEE International Conference on Imaging Systems and Techniques (IST), pages 1–4. IEEE, 2019
2019
-
[44]
A dataset of microscopic peripheral blood cell images for development of automatic recognition systems
Andrea Acevedo, Anna Merino González, Edwin Santiago Alférez Baquero, Ángel Molina Borrás, Laura Boldú Nebot, and José Rodellar Benedé. A dataset of microscopic peripheral blood cell images for development of automatic recognition systems. Data in brief, 30(article 105474), 2020
2020
-
[45]
Efficient multiple organ localization in ct image using 3d region proposal network
Xuanang Xu, Fugen Zhou, Bo Liu, Dongshan Fu, and Xiangzhi Bai. Efficient multiple organ localization in ct image using 3d region proposal network. IEEE transactions on medical imaging, 38(8):1885–1898, 2019
2019
-
[46]
https://www.kaggle.com/c/ diabetic-retinopathy-detection
Kaggle diabetic retinopathy detection competition. https://www.kaggle.com/c/ diabetic-retinopathy-detection
-
[47]
https://challenge.isic-archive.com/landing/2018/
Isic 2018 challenge. https://challenge.isic-archive.com/landing/2018/
2018
-
[48]
Retinal abnormalities recognition using regional multitask learning
Xin Wang, Lie Ju, Xin Zhao, and Zongyuan Ge. Retinal abnormalities recognition using regional multitask learning. In Medical Image Computing and Computer Assisted Intervention–MICCAI 2019: 22nd International Conference, Shenzhen, China, October 13–17, 2019, Proceedings, Part I...
2019
-
[49]
A benchmark for studying diabetic retinopathy: segmentation, grading, and transferability
Yi Zhou, Boyang Wang, Lei Huang, Shanshan Cui, and Ling Shao. A benchmark for studying diabetic retinopathy: segmentation, grading, and transferability. IEEE Transactions on Medical Imaging, 40(3):818– 828, 2020
2020
-
[50]
Gradient and feature conformity-steered medical image classification with noisy labels
Xiaohan Xing, Zhen Chen, Zhifan Gao, and Yixuan Yuan. Gradient and feature conformity-steered medical image classification with noisy labels. In International Conference on Medical Image Computing and Computer-Assisted Intervention, pages 75–84. Springer, 2023
2023
-
[51]
Combating medical label noise via robust semi-supervised contrastive learning
Bingzhi Chen, Zhanhao Ye, Yishu Liu, Zheng Zhang, Jiahui Pan, Biqing Zeng, and Guangming Lu. Combating medical label noise via robust semi-supervised contrastive learning. InInternational Conference on Medical Image Computing and Computer-Assisted Intervention, pages 562–572. ...
2023
-
[52]
PyTorch 2: Faster Machine Learning Through Dynamic Python Bytecode Transformation and Graph Compilation
Jason Ansel, Edward Yang, Horace He, Natalia Gimelshein, Animesh Jain, Michael V oznesensky, Bin Bao, Peter Bell, David Berard, Evgeni Burovski, Geeta Chauhan, Anjali Chourdia, Will Constable, Alban Desmaison, Zachary DeVito, Elias Ellison, Will Feng, Jiong Gong, Michael Gschw...
2024
-
[53]
Medmnist classification decathlon: A lightweight automl benchmark for medical image analysis
Jiancheng Yang, Rui Shi, and Bingbing Ni. Medmnist classification decathlon: A lightweight automl benchmark for medical image analysis. In IEEE 18th International Symposium on Biomedical Imaging (ISBI), pages 191–195, 2021
2021
-
[54]
Medmnist v2-a large-scale lightweight benchmark for 2d and 3d biomedical image classification
Jiancheng Yang, Rui Shi, Donglai Wei, Zequan Liu, Lin Zhao, Bilian Ke, Hanspeter Pfister, and Bingbing Ni. Medmnist v2-a large-scale lightweight benchmark for 2d and 3d biomedical image classification. Scientific Data, 10(1):41, 2023
2023
-
[55]
Kingma and Jimmy Ba
Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. CoRR, abs/1412.6980, 2014
2014 arXiv
-
[57]
Large-scale domain-specific pretraining for biomedical vision-language processing, 2023
Sheng Zhang, Yanbo Xu, Naoto Usuyama, Jaspreet Bagga, Robert Tinn, Sam Preston, Rajesh Rao, Mu Wei, Naveen Valluri, Cliff Wong, Matthew Lungren, Tristan Naumann, and Hoifung Poon. Large-scale domain-specific pretraining for biomedical vision-language processing, 2023
2023
-
[58]
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 2009 IEEE conference on computer vision and pattern recognition, pages 248–255. Ieee, 2009
2009
-
[59]
SELFIE: Refurbishing unclean samples for robust deep learning
Hwanjun Song, Minseok Kim, and Jae-Gil Lee. SELFIE: Refurbishing unclean samples for robust deep learning. In Kamalika Chaudhuri and Ruslan Salakhutdinov, editors, Proceedings of the 36th International Conference on Machine Learning , volume 97 of Proceedings of Machine Learni...
2019
-
[60]
Learning multiple layers of features from tiny images
Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. 2009. 14
2009
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.