On the different regimes of Stochastic Gradient Descent
Antonio Sclocchi, Matthieu Wyart
TL;DR
The paper analyzes how stochastic gradient descent behaves under varying batch sizes and learning rates, revealing a three-regime phase diagram (noise-dominated SGD, first-step-dominated SGD, and gradient descent) whose boundaries depend on training set size $P$ and task hardness. By modeling SGD as an online stochastic differential equation and applying it to a teacher–student perceptron with hinge loss, the authors derive precise scalings: the critical batch size $B^*$ scales as $B^*\sim P^{\gamma}$ with $\gamma=1/(1+\chi)$, and the end-of-training weight norms follow $\|\mathbf w\|\sim TP^{\gamma}$ in the noise-dominated regime. They validate the theory on deep networks (fully-connected and CNNs) across MNIST and CIFAR-10, showing the phase diagram persists and that $B^*$ grows with $P$ according to dataset hardness. Extensions to momentum and weight decay are discussed, along with large-margin and small-margin regimes, NTK-related lazy behavior, and mechanisms to adapt generalization to data structure, making the framework practically relevant for choosing SGD hyperparameters in real-world training. Overall, the work links SGD noise, data size, and task difficulty to dynamical regimes and generalization, offering actionable guidance for optimizing training in deep learning.
Abstract
Modern deep networks are trained with stochastic gradient descent (SGD) whose key hyperparameters are the number of data considered at each step or batch size $B$, and the step size or learning rate $η$. For small $B$ and large $η$, SGD corresponds to a stochastic evolution of the parameters, whose noise amplitude is governed by the ''temperature'' $T\equiv η/B$. Yet this description is observed to break down for sufficiently large batches $B\geq B^*$, or simplifies to gradient descent (GD) when the temperature is sufficiently small. Understanding where these cross-overs take place remains a central challenge. Here, we resolve these questions for a teacher-student perceptron classification model and show empirically that our key predictions still apply to deep networks. Specifically, we obtain a phase diagram in the $B$-$η$ plane that separates three dynamical phases: (i) a noise-dominated SGD governed by temperature, (ii) a large-first-step-dominated SGD and (iii) GD. These different phases also correspond to different regimes of generalization error. Remarkably, our analysis reveals that the batch size $B^*$ separating regimes (i) and (ii) scale with the size $P$ of the training set, with an exponent that characterizes the hardness of the classification problem.
