Concept

RMSprop (Deep Learning Optimization Algorithm)

  • Stands for Root Mean Square Propagation

  • RMSprop is a batch learning algorithm similar to AdaGrad that aims to deal with radically diminishing learning rates.

  • Many times, gradients may be tiny, and others may be huge, which makes learning difficult — trying to find a single global learning rate for the algorithm. RMSprop looks at the step size that’s defined for that weight instead of the magnitude of the gradient. The step size adapts individually over time, so that we accelerate learning in the direction that we need. In this way, RMSProp mimics initializing an instance of AdaGrad in a locally convex bowl, allowing it to converge rapidly there

0

2

Updated 2021-06-24

Tags

Data Science