Welcome back! Today, we'll explore Gradient Descent with Momentum. You've already familiarized yourself with basic gradient descent. However, sometimes gradient descent is slow and gets stuck, especially on bumpy paths to the minimum.
So, how do we speed it up? We use momentum. Imagine pushing a heavy shopping cart. Instead of stopping and starting, you build momentum. This helps you move faster. By the end of this lesson, you'll understand how gradient descent with momentum works, implement it in Python, and see how it improves optimization.
Now, let's implement Gradient Descent with Momentum in Python. Here's the code snippet:
Here’s a breakdown of the key lines in the code:
velocity = [0] * len(point): Initializes the velocity vector with zeros, having the same length as the starting point.velocity[i] = momentum * velocity[i] - learning_rate * grad[i]: Updates the velocity by applying the momentum and subtracting the gradient scaled by the learning rate.point[i] += velocity[i]: Updates the current point using the newly calculated velocity.
Here's the continuation of our implementation with the example function and initial point:
Using momentum in gradient descent offers several benefits:
- Faster Convergence: Reaches the minimum quicker.
- Reduced Oscillations: Smoothens the path, reducing back-and-forth movements.
- Better Navigation Through Local Minima: Avoids getting stuck in small bumps and oscillations.
Congratulations! You've learned about Gradient Descent with Momentum. We covered its importance, how it works, and implemented it in Python. You've seen how it speeds up optimization and reduces oscillations.
Now, let’s practice. In the practice session, you'll implement Gradient Descent with Momentum and observe its effects on different functions. Get ready to solidify your understanding and see momentum in action!

