ResearchPod Summary
Standard neural network training typically employs decoupled weight decay with a constant coefficient. This practice causes network weights to shrink steadily throughout training, which can introduce asymptotic bias and prevent the model from converging to the true minimizer of the loss function. The author asks whether weight decay can be applied in a more principled manner that improves training speed while preserving the stationarity guarantees of unregularized optimization methods.
Inspired by the Robbins-Monro conditions for stochastic approximation, the author proposes scaling the weight decay coefficient by the ratio of the current learning rate to the peak learning rate (η/η_max). This modification ensures that the weight decay term enters the optimization dynamics at a higher order (O(η^2)) as the learning rate decreases, effectively reducing the "shrinkage" pressure late in training. The author integrates this into the Muon optimizer—a spectral-norm-constrained optimizer for matrix-valued weights—to create Muon-SW. The method is evaluated on mixture-of-experts (MoE) models ranging from 72 to 930 million parameters.
This method offers a simple, drop-in replacement for standard weight decay that requires only a few lines of code and incurs no additional computational overhead. By accelerating pre-training for frontier models, it provides a highly efficient way to improve the training of large-scale architectures like MoE transformers, potentially reducing the massive compute costs associated with modern deep learning.
AI-generated third-party summary by ResearchPod. Not official content or an endorsement by the paper authors or affiliated organizations.