Why Do We Need Weight Decay in Modern Deep Learning?
Francesco D'Angelo, Maksym Andriushchenko, Aditya Varre, Nicolas Flammarion
TL;DR
This work investigates why weight decay helps in modern deep learning, arguing that its effect is largely dynamic rather than purely regularization. Through theoretical arguments and extensive experiments on ResNets for vision and transformers for language, the authors show that weight decay with large learning rates sustains non-vanishing SGD noise that regularizes the training via control of the Jacobian, while in one-pass training it modulates the effective learning rate to improve optimization and stability. A unifying view across regimes ties weight decay to either loss stabilization or bias-variance trade-off adjustments, rather than simply constraining model capacity. The findings offer practical guidance for tuning WD with LR and EMA, and illuminate why WD enables stable training in low-precision settings such as bfloat16.
Abstract
Weight decay is a broadly used technique for training state-of-the-art deep networks from image classification to large language models. Despite its widespread usage and being extensively studied in the classical literature, its role remains poorly understood for deep learning. In this work, we highlight that the role of weight decay in modern deep learning is different from its regularization effect studied in classical learning theory. For deep networks on vision tasks trained with multipass SGD, we show how weight decay modifies the optimization dynamics enhancing the ever-present implicit regularization of SGD via the loss stabilization mechanism. In contrast, for large language models trained with nearly one-epoch training, we describe how weight decay balances the bias-variance tradeoff in stochastic optimization leading to lower training loss and improved training stability. Overall, we present a unifying perspective from ResNets on vision tasks to LLMs: weight decay is never useful as an explicit regularizer but instead changes the training dynamics in a desirable way. The code is available at https://github.com/tml-epfl/why-weight-decay
