Machine Learning & AI
Intermediate

RMSProp

Scales the learning rate by a running average of recent squared gradients.

Formula

E[g2]t=γE[g2]t1+(1γ)gt2E[g^2]_t = \gamma E[g^2]_{t-1} + (1-\gamma)g_t^2

Variables

g_tCurrent gradient
\gammaDecay (~0.9)

Example

Damps steps in steep directions

Did You Know?

RMSProp was famously introduced by Geoffrey Hinton in a Coursera lecture, not a paper.

Share this formula