Adagrad
Adagrad , short for adaptive gradient, is a gradient based optimizer that automatically tunes its learning rate in the training process. The learning rate is updated parameter wise, i.e. we have a different learning rate for each of the parameters.
The parameters associated with frequently occurring features have small updates (low learning rate), and the parameters associated with seldom occurring features have bigger updates (high learning rate).
Mathematically Adagrad can be formulated as,
Where is the gradient of the objective function with respect to the parameter
The parameter is updated as follows,
Here is the parameter to be updated, is the sum of the square of all the gradient till time t. We can see that the learning rate is adjusted according to the previous encountered gradients. is the Base Learning Rate.
Here, the base learning rate is usually initialized to 0.01.
is used for numeric stability. Its value is by default.
Major Parameters
- Base Learning Rate
- Weight Decay
- Epsilon Coefficient
- Learning rate decay
Learning Rate Decay
It is a technique where a large learning rate is adopted in the beginning of the training process and then it is decayed by the certain factor after pre-defined epochs. Higher learning rate decay suggests that the initial learning rate will decay more in the epochs.