seniorTensorFlow
Why does TensorFlow training become unstable with large learning rates?
Updated May 16, 2026
Short answer
Large learning rates cause gradient updates to overshoot optimal minima.
Deep explanation
During gradient descent, weights are updated proportionally to gradients. If the learning rate is too high, updates become too aggressive, causing divergence instead of convergence. This leads to oscillation or exploding loss. Adaptive optimizers like Adam mitigate this by adjusting step sizes per parameter.
Unlock with a Pro subscription to view this section.
View pricingReal-world example
No real-world example available yet.
Unlock with a Pro subscription to view this section.
Upgrade to ProCommon mistakes
No common mistakes listed yet.
Unlock with a Pro subscription to view this section.
Upgrade to ProFollow-up questions
No follow-up questions available yet.
Unlock with a Pro subscription to view this section.
Upgrade to Pro