Accelerating Convergence: Implementing Momentum in Gradient Descent Algorithms
Getting Started with Momentum
Hello! Today, we will learn about a powerful technique that makes our Gradient Descent move faster, like a ball rolling down a hill. We call this "Momentum".
What's Momentum and How It Works
Momentum improves our Gradient Descent. How does it do that? Remember how a ball on top of a hill starts rolling down? If the slope is steep, the ball picks up speed, right? That's what momentum does to our Gradient Descent. It makes it move faster when the slope (our 'hill') points in the same direction over time.
How to Add Momentum to Gradient Descent
Compare Gradient Descents: Setup
Now let's visualize how momentum aids in faster convergence (which means getting to the answer quicker) in the following code snippet:
Here, we implement plain and momentum gradients within one loop and track the history of weight changes to visualize them later.
Compare Gradient Descends: Visualization
Let's visualize the comparison:
Here is the result:

Here, we compare Gradient Descent (without momentum) and Momentum-based Gradient Descent on the same function (x^2). The graph shows how the cost (value of the function) changes over time (or epochs). The cost gets smaller faster for the Momentum-based method. That's because it gets a speed boost from the momentum, just like the ball rolling down the hill!
Wrapping Up
You've done it! You've understood how to use momentum to improve Gradient Descent and seen it in action. Doesn't the ball-on-a-hill analogy make it easier to understand? Now, it's time to put your knowledge into practice! If you remember how a rolling ball picks up speed, you'll never forget how momentum improves Gradient Descent. Happy practicing and coding!
