Adadelta

:label:sec_adadelta

Adadelta is yet another variant of AdaGrad (:numref:sec_adagrad). The main difference lies in the fact that it decreases the amount by which the learning rate is adaptive to coordinates. Moreover, traditionally it referred to as not having a learning rate since it uses the amount of change itself as calibration for future change. The algorithm was proposed in :cite:Zeiler.2012. It is fairly straightforward, given the discussion of previous algorithms so far.

The Algorithm

In a nutshell, Adadelta uses two state variables, $\mathbf{s}_t$ to store a leaky average of the second moment of the gradient and $\Delta\mathbf{x}_t$ to store a leaky average of the second moment of the change of parameters in the model itself. Note that we use the original notation and naming of the authors for compatibility with other publications and implementations (there is no other real reason why one should use different Greek variables to indicate a parameter serving the same purpose in momentum, Adagrad, RMSProp, and Adadelta).

Here are the technical details of Adadelta. Given the parameter du jour is $\rho$, we obtain the following leaky updates similarly to :numref:sec_rmsprop:

$$\begin{aligned} \mathbf{s}t & = \rho \mathbf{s}{t-1} + (1 - \rho) \mathbf{g}_t^2. \end{aligned}$$

The difference to :numref:sec_rmsprop is that we perform updates with the rescaled gradient $\mathbf{g}_t’$, i.e.,

$$\begin{aligned} \mathbf{x}t & = \mathbf{x}{t-1} - \mathbf{g}_t’. \ \end{aligned}$$

So what is the rescaled gradient $\mathbf{g}_t’$? We can calculate it as follows:

$$\begin{aligned} \mathbf{g}t’ & = \frac{\sqrt{\Delta\mathbf{x}{t-1} + \epsilon}}{\sqrt{{\mathbf{s}_t + \epsilon}}} \odot \mathbf{g}_t, \ \end{aligned}$$

where $\Delta \mathbf{x}{t-1}$ is the leaky average of the squared rescaled gradients $\mathbf{g}_t’$. We initialize $\Delta \mathbf{x}{0}$ to be $0$ and update it at each step with $\mathbf{g}_t’$, i.e.,

$$\begin{aligned} \Delta \mathbf{x}t & = \rho \Delta\mathbf{x}{t-1} + (1 - \rho) {\mathbf{g}_t’}^2, \end{aligned}$$

and $\epsilon$ (a small value such as $10^{-5}$) is added to maintain numerical stability.

Implementation

Adadelta needs to maintain two state variables for each variable, $\mathbf{s}_t$ and $\Delta\mathbf{x}_t$. This yields the following implementation.

```{.python .input} %matplotlib inline from d2l import mxnet as d2l from mxnet import np, npx npx.set_np()

def init_adadelta_states(feature_dim): s_w, s_b = d2l.zeros((feature_dim, 1)), d2l.zeros(1) delta_w, delta_b = d2l.zeros((feature_dim, 1)), d2l.zeros(1) return ((s_w, delta_w), (s_b, delta_b))

def adadelta(params, states, hyperparams): rho, eps = hyperparams[‘rho’], 1e-5 for p, (s, delta) in zip(params, states):

  1. # In-place updates via [:]
  2. s[:] = rho * s + (1 - rho) * np.square(p.grad)
  3. g = (np.sqrt(delta + eps) / np.sqrt(s + eps)) * p.grad
  4. p[:] -= g
  5. delta[:] = rho * delta + (1 - rho) * g * g
  1. ```{.python .input}
  2. #@tab pytorch
  3. %matplotlib inline
  4. from d2l import torch as d2l
  5. import torch
  6. def init_adadelta_states(feature_dim):
  7. s_w, s_b = d2l.zeros((feature_dim, 1)), d2l.zeros(1)
  8. delta_w, delta_b = d2l.zeros((feature_dim, 1)), d2l.zeros(1)
  9. return ((s_w, delta_w), (s_b, delta_b))
  10. def adadelta(params, states, hyperparams):
  11. rho, eps = hyperparams['rho'], 1e-5
  12. for p, (s, delta) in zip(params, states):
  13. with torch.no_grad():
  14. # In-place updates via [:]
  15. s[:] = rho * s + (1 - rho) * torch.square(p.grad)
  16. g = (torch.sqrt(delta + eps) / torch.sqrt(s + eps)) * p.grad
  17. p[:] -= g
  18. delta[:] = rho * delta + (1 - rho) * g * g
  19. p.grad.data.zero_()

```{.python .input}

@tab tensorflow

%matplotlib inline from d2l import tensorflow as d2l import tensorflow as tf

def init_adadelta_states(feature_dim): s_w = tf.Variable(d2l.zeros((feature_dim, 1))) s_b = tf.Variable(d2l.zeros(1)) delta_w = tf.Variable(d2l.zeros((feature_dim, 1))) delta_b = tf.Variable(d2l.zeros(1)) return ((s_w, delta_w), (s_b, delta_b))

def adadelta(params, grads, states, hyperparams): rho, eps = hyperparams[‘rho’], 1e-5 for p, (s, delta), grad in zip(params, states, grads): s[:].assign(rho s + (1 - rho) tf.math.square(grad)) g = (tf.math.sqrt(delta + eps) / tf.math.sqrt(s + eps)) grad p[:].assign(p - g) delta[:].assign(rho delta + (1 - rho) g g)

  1. Choosing $\rho = 0.9$ amounts to a half-life time of 10 for each parameter update. This tends to work quite well. We get the following behavior.
  2. ```{.python .input}
  3. #@tab all
  4. data_iter, feature_dim = d2l.get_data_ch11(batch_size=10)
  5. d2l.train_ch11(adadelta, init_adadelta_states(feature_dim),
  6. {'rho': 0.9}, data_iter, feature_dim);

For a concise implementation we simply use the adadelta algorithm from the Trainer class. This yields the following one-liner for a much more compact invocation.

```{.python .input} d2l.train_concise_ch11(‘adadelta’, {‘rho’: 0.9}, data_iter)

  1. ```{.python .input}
  2. #@tab pytorch
  3. trainer = torch.optim.Adadelta
  4. d2l.train_concise_ch11(trainer, {'rho': 0.9}, data_iter)

```{.python .input}

@tab tensorflow

adadelta is not converging at default learning rate

but it’s converging at lr = 5.0

trainer = tf.keras.optimizers.Adadelta d2l.train_concise_ch11(trainer, {‘learning_rate’:5.0, ‘rho’: 0.9}, data_iter) ```

Summary

  • Adadelta has no learning rate parameter. Instead, it uses the rate of change in the parameters itself to adapt the learning rate.
  • Adadelta requires two state variables to store the second moments of gradient and the change in parameters.
  • Adadelta uses leaky averages to keep a running estimate of the appropriate statistics.

Exercises

  1. Adjust the value of $\rho$. What happens?
  2. Show how to implement the algorithm without the use of $\mathbf{g}_t’$. Why might this be a good idea?
  3. Is Adadelta really learning rate free? Could you find optimization problems that break Adadelta?
  4. Compare Adadelta to Adagrad and RMS prop to discuss their convergence behavior.

:begin_tab:mxnet Discussions :end_tab:

:begin_tab:pytorch Discussions :end_tab:

:begin_tab:tensorflow Discussions :end_tab: