Question 16
Select all statements that are TRUE regarding the mechanics of Adagrad and RMSProp.
Assuming a constant base learning rate, Adagrad's squared-gradient accumulator only grows (or stays the same), meaning a parameter's effective learning rate can never increase over time.
In RMSProp, a parameter's effective learning rate can actually increase again if it starts receiving much smaller gradients than it did previously.
For sparse features (which rarely receive non-zero gradients), Adagrad forces the effective learning rate to decay much more slowly compared to frequently updated dense features.
Over a very long training run, RMSProp's accumulator eventually converges to the total sum of all squared gradients seen during training.
Changing Adagrad's infinite cumulative sum into an exponentially decaying average is exactly the modification that creates RMSProp and solves the vanishing learning rate problem.