paper-with-me

홈 › Papers

Understanding and Improving Early Stopping for Learning with Noisy Labels

2021-06-30 · NeurIPS 2021 12 · Yingbin Bai, Erkun Yang, Bo Han, Yanhua Yang, Jiatong Li, Yinian Mao, Gang Niu, Tongliang Liu

The memorization effect of deep neural network (DNN) plays a pivotal role in many state-of-the-art label-noise learning methods. To exploit this property, the early stopping trick, which stops the optimization at the early stage of training, is usually adopted. Current methods generally decide the early stopping point by considering a DNN as a whole. However, a DNN can be considered as a composition of a series of layers, and we find that the latter layers in a DNN are much more sensitive to label noise, while their former counterparts are quite robust. Therefore, selecting a stopping point for the whole network may make different DNN layers antagonistically affected each other, thus degrading the final performance. In this paper, we propose to separate a DNN into different parts and progressively train them to address this problem. Instead of the early stopping, which trains a whole DNN all at once, we initially train former DNN layers by optimizing the DNN with a relatively large number of epochs. During training, we progressively train the latter DNN layers by using a smaller number of epochs with the preceding layers fixed to counteract the impact of noisy labels. We term the proposed method as progressive early stopping (PES). Despite its simplicity, compared with the early stopping, PES can help to obtain more promising and stable results. Furthermore, by combining PES with existing approaches on noisy label training, we achieve state-of-the-art performance on image classification benchmarks.

📄 PDF Abstract BibTeX arXiv:2106.15853

Code (1)

tmllab/PES 공식 구현 pytorch

Tasks

image-classificationImage ClassificationLearning with noisy labelsMemorization

Methods 이 논문이 사용한 방법론

Early Stopping Early Stopping is a regularization technique for deep neural networks that stops training when parameter updates no longer begin to yield improves on a validation set. In…

Similar Papers 제목 키워드 기반

Noisy Early Stopping for Noisy Labels

2024-09-10 · William Toner, Amos Storkey

Training neural network classifiers on datasets contaminated with noisy labels significantly increases the risk of overfitting. Thus, effectively implementing Early Stopping in noisy label environments is crucial. Under …

Robust early-learning: Hindering the memorization of noisy labels

2021-01-01 · ICLR 2021 1 · Xiaobo Xia, Tongliang Liu, Bo Han, Chen Gong 외

The \textit{memorization effects} of deep networks show that they will first memorize training data with clean labels and then those with noisy labels. The \textit{early stopping} method therefore can be exploited for le…

Image ClassificationLearning with noisy labelsMemorization

Prestopping: How Does Early Stopping Help Generalization Against Label Noise?

2019-09-25 · Hwanjun Song, Minseok Kim, Dongmin Park, Jae-Gil Lee

Noisy labels are very common in real-world training data, which lead to poor generalization on test data because of overfitting to the noisy labels. In this paper, we claim that such overfitting can be avoided by "early …

PADDLES: Phase-Amplitude Spectrum Disentangled Early Stopping for Learning with Noisy Labels

2022-12-07 · ICCV 2023 1 · Huaxi Huang, Hui Kang, Sheng Liu, Olivier Salvado 외

Convolutional Neural Networks (CNNs) have demonstrated superiority in learning patterns, but are sensitive to label noises and may overfit noisy labels during training. The early stopping strategy averts updating CNNs du…

Learning with noisy labels

How does Early Stopping Help Generalization against Label Noise?

2019-11-19 · Hwanjun Song, Minseok Kim, Dongmin Park, Jae-Gil Lee

Noisy labels are very common in real-world training data, which lead to poor generalization on test data because of overfitting to the noisy labels. In this paper, we claim that such overfitting can be avoided by "early …