Visualize learning-rate curves without manual spreadsheets quickly here. Switch between classic and warm-restart strategies easily. Get the exact rate for each epoch instantly now.
| Use case | ηmax | ηmin | Main setting | Note |
|---|---|---|---|---|
| Classic training run | 0.10 | 0.0001 | T_max = 100 | Best for one continuous training horizon. |
| Exploration with restarts | 0.05 | 0.0001 | T_0 = 10, T_mult = 2 | Periodic peaks can escape sharp minima. |
| Restart peaks decay | 0.05 | 0.0001 | γ = 0.9 | Gradually reduces peak learning rate over cycles. |
Classic cosine annealing
η(t) = η_min + 0.5(η_max − η_min) · (1 + cos(π · t / T_max))
Warm restarts
η(t) = η_min + 0.5(η_max(cycle) − η_min) · (1 + cos(π · t_cur / T_i))
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.