Learning Rate in Neural Network (original) (raw)

Last Updated : 12 May, 2026

The learning rate is a key hyperparameter that controls how quickly a model learns by determining the step size during weight updates.

**Formula

w = w - \alpha \cdot \nabla L(w)

Where:

**Impact of Learning Rate on Model

The learning rate directly influences how fast and how well a model learns by controlling the size of weight updates during training.

Techniques for Adjusting the Learning Rate

1. **Fixed Learning Rate

2. **Learning Rate Schedules

These techniques reduce the learning rate over time based on predefined rules to improve convergence:

3. **Adaptive Learning Rate Methods

Adaptive methods adjust the learning rate dynamically based on gradient information, allowing better updates per parameter:

4. **Cyclic Learning Rate

5. **Decaying Learning Rate

Advantages

Limitations