When does SGD work well?

A summary of recent work on theoretical bounds for SGD

🧮 math
Table of Contents

Stochastic Gradient Descent (SGD) has turned out to be a workhorse for most gradient-based supervised learning algorithms today. But, why does that work? This post presents an understanding from recent 1 theoretical results which gives insights into the properties of this algorithm.

Background

Formally, we define the general problem of stochastic optimization given a random variable ξ\xi as

minwRdF(w)=E[f(w,ξ)]\underset{\mathbf{w} \in \mathbb{R}^d}{min} F(\mathbf{w}) = \mathbb{E}[f(\mathbf{w},\xi)]

In supervised learning, this framework is seen in the form of Empirical Risk Minimization (ERM) where the aim is to search the d-dimensional parameter space wRdw \in \mathbb{R}^d, so that we minimize the expected risk (colloquially know as loss) over the given data. ξi\xi_i is a single sample from this data (xi,yi)X×Y(\mathbf{x}_i,\mathbf{y}_i) \in \mathcal{X} \times \mathcal{Y}. Concisely, we write this in a finite sum form

minwRdF(w)=1ni=1nfi(w)\underset{\mathbf{w} \in \mathbb{R}^d}{min} F(\mathbf{w}) = \frac{1}{n} \sum_{i=1}^n f_i(\mathbf{w})

where fi(w)=f(w,ξi)f_i(\mathbf{w}) = f(\mathbf{w}, \xi_i). For instance, fif_i could represent the Squared Loss function. Having minimized the risk, we declare the system “learned”.

From basic convex optimization theory, a closed form solution to a (strongly) convex minimization problem is to solve the system of linear equations after equating the derivative to zero. In other cases an analytical solution might not even be possible. It is well known that calculating the gradient over the complete sample becomes computationally prohibitive when the number of samples nn become very large (which is typically the case). Therefore, we approximate the gradient step by considering a small batch of the samples (sometimes just one) which is what the core of SGD contains. It is easy to show that this is an unbiased estimator of the true gradient, i.e E[fi(w)]=F(w)\mathbb{E}[\nabla f_i(\mathbf{w})] = \nabla F(\mathbf{w}). The canonical form of the parameter update is then written as

wt+1=wtηtF(wt)\mathbf{w}_{t+1} = \mathbf{w}_t - \eta_t \nabla F(\mathbf{w}_t)

which can be intuitively seen as a step in the opposite direction of steepest ascent (and hence the name gradient descent). ηt\eta_t represents the step size in that direction. Make it too small, SGD will take a long time to converge to the solution. Make it too large, SGD will most likely never find a solution. ηt\eta_t is typically a constant value with respect to time steps in vanilla SGD.

Contour Plots for SGD Path. Left: Low Variance; Right: High Variance
Contour Plots for SGD Path. Left: Low Variance; Right: High Variance

It has been observed that when the components of fif_i are far from the optimal solution, SGD wanders erratically around the optimum causing high variance in the descent path (see graph on the right above). Variance reduction techniques like RMSProp and Adam provide faster and smoother path to convergence by varying ηt\eta_t with the time steps (see graph on the left above).

Result Summary

Now that we have setup a quick background to realize the problem this work is trying to solve, here is the crux of the proposed results.

We can achieve fast convergence rates using Stochastic Gradient Descent for both convex and non-convex cases, until some accuracy is reached. This can be done with a reasonably large fixed step size without using variance reduction techniques.

This claim is interesting because it is a step towards the theoretical understanding of why SGD behaves the way it does.

Convergence Results

One way to understand the behavior of SGD algorithm is to bind the expected value (over samples from the population) of the difference of objective values at the end of ttht^{th} epoch. In Learning Theory literature, we derive such “concentration bounds” so as to explain how the empirical estimates “concentrate” around the true estimate. Quite understandably, we want the RHS of these inequalities to be as small as possible for a good generalization behavior.

The main result from the work in 1 for convex objectives is paraphrased below

Suppose that f(w;ξ)f(\mathbf{w}; \xi) is L-smooth and convex for every realization of ξ\xi. With ηt=η<1L\eta_t = \eta < \frac{1}{L}, for any ϵ>0\epsilon > 0 we have

E[F(wt)F(w)]w0w22η(1ηL)t+η1ηLpϵϵ+ηMϵ1ηL(1pϵ)\mathbb{E}[F(\mathbf{w}_t) - F(\mathbf{w}_\star)] \leq \frac{||\mathbf{w}_0 - \mathbf{w}_\star ||^2}{2\eta(1 - \eta L)t} + \frac{\eta}{1-\eta L} p_{\epsilon}\epsilon + \frac{\eta M_{\epsilon}}{1-\eta L} (1 - p_{\epsilon})

where w\mathbf{w}_\star is any optimal solution of F(w)F(\mathbf{w}), w0\mathbf{w}_0 is the initial solution, pϵ=P(g2ϵ)p_\epsilon = P(|| g_\star ||^2 \leq \epsilon), Mϵ=E[gg>ϵ]M_\epsilon = \mathbb{E}[|| g || \big| || g || > \epsilon ] and g=1bi=1bf(w;ξi)g_\star = \frac{1}{b} \sum_{i=1}^b \nabla f(\mathbf{w}_\star; \xi_i).

where L-smoothness is defined as

A function ϕ\phi is LL-Smooth if there exists a constant LL such that

ϕ(w)ϕ(w)Lww w,wRd|| \nabla \phi(\mathbf{w}) - \nabla \phi(\mathbf{w}^\prime) || \leq L || \mathbf{w} - \mathbf{w}^\prime || \text{ } \forall \mathbf{w}, \mathbf{w}^\prime \in \mathbb{R}^d

This result is quite dense with information. A few key definitions are important to understand this.

From calculus, we know that the gradient vanishes at a stationary point but since we are now approximating gradients, we can only analyze how well it “concentrates” around the true optimum. In light of this, the quantity pϵp_\epsilon represents the probability of the gradient norm being less than a small positive value ϵ\epsilon. MϵM_\epsilon represents the average bound for large gradients. Quite understandably, we also see that the initial solution w0\mathbf{w}_0 also affects the viability of this bound.

It should be observed that as ϵ\epsilon decreases, 1pϵ1 - p_\epsilon increases. Owing to this dynamic, if we hover around the region where ϵ1pϵ\epsilon \approx 1 - p_\epsilon, then SGD uniformly converges in the neighborhood of O(ϵ)\mathcal{O}(\epsilon) which is a tighter bound than previous results 2 3.

The result shown above shows dependence on the initial solution, pϵp_\epsilon and MϵM_\epsilon. If we now restrict 1pϵϵ1 - p_\epsilon \leq \epsilon and η12L\eta \leq \frac{1}{2L} (only for notational simplication), we get the following bound

E[F(wt)F(w)]w0w2ηt+2η(1+Mϵ)ϵ\mathbb{E}[F(\mathbf{w}_t) - F(\mathbf{w}_\star)] \leq \frac{||\mathbf{w}_0 - \mathbf{w}_\star ||^2}{\eta t} + 2\eta (1 + M_\epsilon) \epsilon

and for tT=w0w22η2(1+Mϵ)ϵt \geq T = \frac{||\mathbf{w}_0 - \mathbf{w}_\star ||^2}{2 \eta^2 (1 + M_\epsilon) \epsilon},

E[F(wt)F(w)]4η(1+Mϵ)ϵ\mathbb{E}[F(\mathbf{w}_t) - F(\mathbf{w}_\star)] \leq 4 \eta (1 + M_\epsilon) \epsilon

Hence, under the key assumptions stated above and bounding MϵMmaxM_\epsilon \leq M_{max}, we achieve the O(ϵ)\mathcal{O}(\epsilon) optimality gap. This bound tells us that with sufficient time steps, the vanilla SGD algorithm can uniformly converge to the true optimum within a given accuracy estimate ϵ\epsilon. This is indeed contingent on the probability that the stochastic gradients have a norm below ϵ\epsilon at the solution. Increasing the batch size, we can expect 1pϵϵ1 - p_\epsilon \leq \epsilon to hold for small values of ϵ\epsilon making the bounds even better. In the limit of arbitrarily small ϵ\epsilon we basically recover the gradient.

A similar analysis for non-convex objectives is also presented in 1. Empirical results reported in the work show that SGD tends to be faster than other techniques like SVRG and L-BFGS which is quite fascinating. It should also be noted there that the specific form of the objective function doesn’t matter as long as it satisfies the smoothness property.

Conclusion

One could point out that most objectives that we encounter in Neural Networks generally tend to be non-convex. How could the analysis of convex objectives even be of importance? The motivation lies in the fact that stationary points will fall in a “locally” convex neighborhood. A convex analysis above would be a great help in analyzing and understanding the properties of SGD in such neighborhoods. Removing this local constraint can only make things better.

However, one must be wary of such theoretical bounds. They are only meant to be indicative of behavior in practice. These bounds act as a tool for investigation of properties or in others as a tool for the invention of new algorithms. The calculation of the terms in concentration bounds is helpful to provide empirical evidence of an overall trend. However, for most situations, searching for exact values is a fruitless endeavor and the bounds are only meant to nudge us in the right conceptual direction.

Footnotes

  1. Nguyen, L.M., Nguyen, N.H., Phan, D., Kalagnanam, J., & Scheinberg, K. (2018). When Does Stochastic Gradient Algorithm Work Well? ArXiv, abs/1801.06159. 2 3

  2. Bottou, L., & Bousquet, O. (2007). The Tradeoffs of Large Scale Learning. NIPS.

  3. Bottou, L., Curtis, F.E., & Nocedal, J. (2018). Optimization Methods for Large-Scale Machine Learning. ArXiv, abs/1606.04838.