Minimizing Finite Sums with the Stochastic Average Gradient
Mark Schmidt, Nicolas Le Roux, Francis Bach
TL;DR
The paper addresses minimizing a finite sum g(x) = (1/n)∑ f_i(x) of smooth convex functions when n is very large. It introduces the stochastic average gradient (SAG) method, which combines the low per‑iteration cost of stochastic gradient methods with memory of past gradients to achieve rates comparable to full gradient methods, namely O(1/k) for convex problems and linear convergence for strongly convex cases. The authors prove convergence using a Lyapunov function, show that SAG can tolerate larger stepsizes than IAG, and demonstrate practical improvements via implementation techniques such as structured gradients, regularization, warm starts, line‑search, mini‑batches, and non‑uniform sampling. Empirical results on logistic regression problems across multiple datasets show that SAG often dramatically outperforms SG and FG methods, with additional gains from non‑uniform sampling and batching, indicating strong practical value for large‑scale machine learning tasks.
Abstract
We propose the stochastic average gradient (SAG) method for optimizing the sum of a finite number of smooth convex functions. Like stochastic gradient (SG) methods, the SAG method's iteration cost is independent of the number of terms in the sum. However, by incorporating a memory of previous gradient values the SAG method achieves a faster convergence rate than black-box SG methods. The convergence rate is improved from O(1/k^{1/2}) to O(1/k) in general, and when the sum is strongly-convex the convergence rate is improved from the sub-linear O(1/k) to a linear convergence rate of the form O(p^k) for p \textless{} 1. Further, in many cases the convergence rate of the new method is also faster than black-box deterministic gradient methods, in terms of the number of gradient evaluations. Numerical experiments indicate that the new algorithm often dramatically outperforms existing SG and deterministic gradient methods, and that the performance may be further improved through the use of non-uniform sampling strategies.
