From Cornell University Computational Optimization Open Textbook - Optimization Wiki
Author: Daniel Villarraga (SYSEN 6800 Fall 2021)
Introduction
AdaGrad is a family of sub-gradient algorithms for stochastic optimization. The algorithms belonging to that family are similar to second-order stochastic gradient descend with an approximation for the Hessian of the optimized function. AdaGrad's name comes from Adaptative Gradient. Intuitively, it adapts the learning rate for each feature depending on the estimated geometry of the problem; particularly, it tends to assign higher learning rates to infrequent features, which ensures that the parameter updates rely less on frequency and more on relevance.
AdaGrad was introduced by Duchi et al.[1] in a highly cited paper published in the Journal of machine learning research in 2011. It is arguably one of the most popular algorithms for machine learning (particularly for training deep neural networks) and it influenced the development of the Adam algorithm[2].
Theory
The objective of AdaGrad is to minimize the expected value of a stochastic objective function, with respect to a set of parameters, given a sequence of realizations of the function. As with other sub-gradient-based methods, it achieves so by updating the parameters in the opposite direction of the sub-gradients. While standard sub-gradient methods use update rules with step-sizes that ignore the information from the past observations, AdaGrad adapts the learning rate for each parameter individually using the sequence of gradient estimates.
Definitions
: Stochastic objective function with parameters .
: Realization of stochastic objective at time step . For simplicity .
: The gradient of with respect to , formally . For simplicity, .
: Parameters at time step .
: The outer product of all previous subgradients, given by
Standard Sub-gradient Update
Standard sub-gradient algorithms update parameters according to the following rule:
where
denotes the step-size often refered as learning rate. Expanding each term on the previous equation, the vector of parameters is updated as follows:
AdaGrad Update
The general AdaGrad update rule is given by:
where
is the inverse of the square root of
. A simplified version of the update rule takes the diagonal elements of
instead of the whole matrix:
which can be computed in linear time. In practice, a small quantity
is added to each diagonal element in
to avoid singularity problems, the resulting update rule is given by:
where
denotes the identity matrix. An expanded form of the previous update is presented below,
where the operator
denotes the
Hadamard product between matrices of the same dimension, and
is the
element in the
diagonal. From the last expression, it is clear that the update rule for AdaGrad adapts the step-size for each parameter accoding to
, in contrast with standard sub-gradient methods that have fixed step-size
for every parameter.
Algorithm
Regret Bounds
Empirical Performance
Numerical Example
Applications
Summary and Discussion
References
- ↑ Duchi, J., Hazan, E., & Singer, Y. (2011). Adaptive subgradient methods for online learning and stochastic optimization. Journal of machine learning research, 12(7).
- ↑ Kingma, D. P., & Ba, J. (2014). Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980.