Machine Learning & AI
Intermediate
Exponential LR Decay
Gradually lowers the learning rate as training progresses.
Formula
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
More in Machine Learning & AI
View allLinear Regression Model
BasicPredicts a continuous value as a weighted sum of input features plus a bias.
Gradient Descent Update
BasicIteratively moves parameters in the direction that most reduces the loss.
ReLU Activation
BasicRectified Linear Unit: outputs the input if positive, else zero.
Leaky ReLU
BasicA ReLU variant that lets a small gradient flow for negative inputs.
Tanh Activation
BasicSquashes input to the range (-1, 1); zero-centred activation.
Softmax
BasicTurns a vector of scores into a probability distribution that sums to 1.