paper-with-me

Papers

Instance-dependent Early Stopping

2025-02-11 · Suqin Yuan, Runqi Lin, Lei Feng, Bo Han, Tongliang Liu

In machine learning practice, early stopping has been widely used to regularize models and can save computational costs by halting the training process when the model's performance on a validation set stops improving. However, conventional early stopping applies the same stopping criterion to all instances without considering their individual learning statuses, which leads to redundant computations on instances that are already well-learned. To further improve the efficiency, we propose an Instance-dependent Early Stopping (IES) method that adapts the early stopping mechanism from the entire training set to the instance level, based on the core principle that once the model has mastered an instance, the training on it should stop. IES considers an instance as mastered if the second-order differences of its loss value remain within a small range around zero. This offers a more consistent measure of an instance's learning status compared with directly using the loss value, and thus allows for a unified threshold to determine when an instance can be excluded from further backpropagation. We show that excluding mastered instances from backpropagation can increase the gradient norms, thereby accelerating the decrease of the training loss and speeding up the training process. Extensive experiments on benchmarks demonstrate that IES method can reduce backpropagation instances by 10%-50% while maintaining or even slightly improving the test accuracy and transfer learning performance of a model.

📄 PDF Abstract BibTeX arXiv:2502.07547

Code (1)

tmllab/2025_ICLR_IES 공식 구현 pytorch

Tasks

Transfer Learning

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…
SET Dynamic Sparse Training method where weight mask is updated randomly periodically

Similar Papers 제목 키워드 기반

Instance-Dependent Confidence and Early Stopping for Reinforcement Learning

2022-01-21 · Koulik Khamaru, Eric Xia, Martin J. Wainwright, Michael I. Jordan

Various algorithms for reinforcement learning (RL) exhibit dramatic variation in their convergence rates as a function of problem structure. Such problem-dependent behavior is not captured by worst-case analyses and has …

reinforcement-learningReinforcement LearningReinforcement Learning (RL)

Early stopping and non-parametric regression: An optimal data-dependent stopping rule

2013-06-15 · Garvesh Raskutti, Martin J. Wainwright, Bin Yu

The strategy of early stopping is a regularization technique based on choosing a stopping time for an iterative algorithm. Focusing on non-parametric regression in a reproducing kernel Hilbert space, we analyze the early…

regression

Conformal inference is (almost) free for neural networks trained with early stopping

2023-01-27 · Ziyi Liang, Yanfei Zhou, Matteo Sesia

Early stopping based on hold-out data is a popular regularization technique designed to mitigate overfitting and increase the predictive accuracy of neural networks. Models trained with early stopping often provide relat…

Multi-class ClassificationOutlier Detection

A Principled Self-Referenced Early Stopping Approach for Deep Image Prior

2026-05-24 · Chaoyan Huang, Cheng-Han Huang, Ismail R. Alkhouri, Rongrong Wang arxiv

Recently, Deep Image Prior (DIP) has demonstrated strong capabilities for solving inverse imaging problems (IIPs) by optimizing a randomly initialized convolutional neural network in a training-data-free regime. However,…

Image ReconstructionImage Restoration

Don't stop me now: Rethinking Validation Criteria for Model Parameter Selection

2026-02-25 · Andrea Apicella, Francesco Isgrò, Andrea Pollastro, Roberto Prevete arxiv

Despite the extensive literature on training loss functions, the evaluation of generalization on the validation set remains underexplored. In this work, we conduct a systematic empirical and statistical study of how the …