While Momentum-Based Gradient Descent (MGD) does well to speed up the process of convergence in the flatter regions of the error surface, it tends to overshoot the destination and could oscillate back and forth in the regions near the point of convergence. Nesterov Accelerated Gradient Descent (NAG) provides a solution to control these oscillations.

Recall from MGD that:

From this, we see that that for the current iteration is first updated by the of the previous iteration (i.e., ) and then the gradient is added to it. NAG proposes that we first add the previous updates and then calculate the gradient of the loss function with respect the new quantity and then add the weights accordingly. Look before you leap. We first check whether we’re moving in the right direction after adding the previous updates and then move in the required direction towards convergence based on this based on this. This is a more measured approach where we can course-correct. Using NAG, we update the weights in the following manner:

  • Notice how we don’t add the entire gradient of the weight vector in the current iteration to the update. Instead we moderate it according to where the momentum takes us. The gradient is calculated at the ‘look-ahead value’.

This demo illustrates how NAG prevents the aforementioned oscillations from happening.