Machine Learning & AI
Intermediate

Exponential LR Decay

Gradually lowers the learning rate as training progresses.

Formula

αt=α0ekt\alpha_t = \alpha_0\, e^{-k t}

Variables

\alpha_0Initial rate
kDecay rate
tStep/epoch

Example

alpha0=0.1, k=0.1, t=10: alpha=0.037

Did You Know?

Decaying the learning rate lets a model take big early steps then fine-tune near the minimum.

Share this formula