Artificial Intelligence
Gradient Descent With Nesterov Momentum From Scratch
Gradient descent is an optimization algorithm that follows the unfavourable gradient of an goal perform with a purpose to find the minimal of the perform.
A limitation of gradient descent is that it will probably get caught in flat areas or bounce round if the target perform returns noisy gradients. Momentum is an strategy that accelerates the progress of the search to skim throughout flat areas and clean out bouncy gradients.
In some instances, the acceleration of momentum may cause the search to overlook or overshoot the minima on the backside of basins or valleys. Nesterov momentum is an extension of momentum that includes calculating the decaying transferring common of the gradients of projected positions within the search house relatively than the precise positions themselves.
This has the impact of harnessing the accelerating advantages of momentum while permitting the search to decelerate when approaching the optima and scale back the probability of lacking or overshooting it.
On this tutorial, you’ll uncover the way to develop the Gradient Descent optimization algorithm with Nesterov Momentum from scratch.
After finishing this tutorial, you’ll know:
- Gradient descent is an optimization algorithm that makes use of the gradient of the target perform to navigate the search house.
- The convergence of gradient descent optimization algorithm could be accelerated by extending the algorithm and including Nesterov Momentum.
- implement the Nesterov Momentum optimization algorithm from scratch and apply it to an goal perform and consider the outcomes.
Let’s get began.
Gradient Descent With Nesterov Momentum From Scratch
Picture by Bonnie Moreland, some rights reserved.
Tutorial Overview
This tutorial is split into three elements; they’re:
- Gradient Descent
- Nesterov Momentum
- Gradient Descent With Nesterov Momentum
- Two-Dimensional Take a look at Drawback
- Gradient Descent Optimization With Nesterov Momentum
- Visualization of Nesterov Momentum
Gradient Descent
Gradient descent is an optimization algorithm.
It’s technically known as a first-order optimization algorithm because it explicitly makes use of the primary order spinoff of the goal goal perform.
First-order strategies depend on gradient info to assist direct the seek for a minimal …
— Web page 69, Algorithms for Optimization, 2019.
The primary order spinoff, or just the “spinoff,” is the speed of change or slope of the goal perform at a particular level, e.g. for a particular enter.
If the goal perform takes a number of enter variables, it’s known as a multivariate perform and the enter variables could be regarded as a vector. In flip, the spinoff of a multivariate goal perform may additionally be taken as a vector and is referred to usually because the “gradient.”
- Gradient: First order spinoff for a multivariate goal perform.
The spinoff or the gradient factors within the path of the steepest ascent of the goal perform for a particular enter.
Gradient descent refers to a minimization optimization algorithm that follows the unfavourable of the gradient downhill of the goal perform to find the minimal of the perform.
The gradient descent algorithm requires a goal perform that’s being optimized and the spinoff perform for the target perform. The goal perform f() returns a rating for a given set of inputs, and the spinoff perform f'() offers the spinoff of the goal perform for a given set of inputs.
The gradient descent algorithm requires a place to begin (x) in the issue, resembling a randomly chosen level within the enter house.
The spinoff is then calculated and a step is taken within the enter house that’s anticipated to end in a downhill motion within the goal perform, assuming we’re minimizing the goal perform.
A downhill motion is made by first calculating how far to maneuver within the enter house, calculated because the steps measurement (referred to as alpha or the training price) multiplied by the gradient. That is then subtracted from the present level, making certain we transfer in opposition to the gradient, or down the goal perform.
- x(t+1) = x(t) – step_size * f'(x(t))
The steeper the target perform at a given level, the bigger the magnitude of the gradient, and in flip, the bigger the step taken within the search house. The dimensions of the step taken is scaled utilizing a step measurement hyperparameter.
- Step Dimension (alpha): Hyperparameter that controls how far to maneuver within the search house in opposition to the gradient every iteration of the algorithm.
If the step measurement is simply too small, the motion within the search house shall be small, and the search will take a very long time. If the step measurement is simply too giant, the search might bounce across the search house and skip over the optima.
Now that we’re conversant in the gradient descent optimization algorithm, let’s check out the Nesterov momentum.
Nesterov Momentum
Nesterov Momentum is an extension to the gradient descent optimization algorithm.
The strategy was described by (and named for) Yurii Nesterov in his 1983 paper titled “A Technique For Fixing The Convex Programming Drawback With Convergence Price O(1/ok^2).”
Ilya Sutskever, et al. are liable for popularizing the appliance of Nesterov Momentum within the coaching of neural networks with stochastic gradient descent described of their 2013 paper “On The Significance Of Initialization And Momentum In Deep Studying.” They referred to the strategy as “Nesterov’s Accelerated Gradient,” or NAG for brief.
Nesterov Momentum is rather like extra conventional momentum besides the replace is carried out utilizing the partial spinoff of the projected replace relatively than the spinoff present variable worth.
Whereas NAG just isn’t sometimes regarded as a kind of momentum, it certainly seems to be intently associated to classical momentum, differing solely within the exact replace of the speed vector …
— On The Significance Of Initialization And Momentum In Deep Studying, 2013.
Conventional momentum includes sustaining an extra variable that represents the final replace carried out to the variable, an exponentially decaying transferring common of previous gradients.
The momentum algorithm accumulates an exponentially decaying transferring common of previous gradients and continues to maneuver of their path.
— Web page 296, Deep Studying, 2016.
This final replace or final change to the variable is then added to the variable scaled by a “momentum” hyperparameter that controls how a lot of the final change so as to add, e.g. 0.9 for 90%.
It’s simpler to consider this replace when it comes to two steps, e.g calculate the change within the variable utilizing the partial spinoff then calculate the brand new worth for the variable.
- change(t+1) = (momentum * change(t)) – (step_size * f'(x(t)))
- x(t+1) = x(t) + change(t+1)
We are able to consider momentum when it comes to a ball rolling downhill that can speed up and proceed to go in the identical path even within the presence of small hills.
Momentum could be interpreted as a ball rolling down an almost horizontal incline. The ball naturally gathers momentum as gravity causes it to speed up, simply because the gradient causes momentum to build up on this descent technique.
— Web page 75, Algorithms for Optimization, 2019.
An issue with momentum is that acceleration can generally trigger the search to overshoot the minima on the backside of a basin or valley flooring.
Nesterov Momentum could be regarded as a modification to momentum to beat this drawback of overshooting the minima.
It includes first calculating the projected place of the variable utilizing the change from the final iteration and utilizing the spinoff of the projected place within the calculation of the brand new place for the variable.
Calculating the gradient of the projected place acts like a correction issue for the acceleration that has been collected.
With Nesterov momentum the gradient is evaluated after the present velocity is utilized. Thus one can interpret Nesterov momentum as trying so as to add a correction issue to the usual technique of momentum.
— Web page 300, Deep Studying, 2016.
Nesterov Momentum is simple to consider this when it comes to the 4 steps:
- 1. Venture the place of the answer.
- 2. Calculate the gradient of the projection.
- 3. Calculate the change within the variable utilizing the partial spinoff.
- 4. Replace the variable.
Let’s undergo these steps in additional element.
First, the projected place of your complete answer is calculated utilizing the change calculated within the final iteration of the algorithm.
- projection(t+1) = x(t) + (momentum * change(t))
We are able to then calculate the gradient for this new place.
- gradient(t+1) = f'(projection(t+1))
Now we will calculate the brand new place of every variable utilizing the gradient of the projection, first by calculating the change in every variable.
- change(t+1) = (momentum * change(t)) – (step_size * gradient(t+1))
And eventually, calculating the brand new worth for every variable utilizing the calculated change.
- x(t+1) = x(t) + change(t+1)
Within the subject of convex optimization extra usually, Nesterov Momentum is understood to enhance the speed of convergence of the optimization algorithm (e.g. scale back the variety of iterations required to search out the answer).
Like momentum, NAG is a first-order optimization technique with higher convergence price assure than gradient descent in sure conditions.
— On The Significance Of Initialization And Momentum In Deep Studying, 2013.
Though the approach is efficient in coaching neural networks, it might not have the identical basic impact of accelerating convergence.
Sadly, within the stochastic gradient case, Nesterov momentum doesn’t enhance the speed of convergence.
— Web page 300, Deep Studying, 2016.
Now that we’re conversant in the Nesterov Momentum algorithm, let’s discover how we’d implement it and consider its efficiency.
Gradient Descent With Nesterov Momentum
On this part, we are going to discover the way to implement the gradient descent optimization algorithm with Nesterov Momentum.
Two-Dimensional Take a look at Drawback
First, let’s outline an optimization perform.
We’ll use a easy two-dimensional perform that squares the enter of every dimension and outline the vary of legitimate inputs from -1.0 to 1.0.
The target() perform under implements this perform.
# goal perform def goal(x, y): return x**2.0 + y**2.0 |
We are able to create a three-dimensional plot of the dataset to get a sense for the curvature of the response floor.
The whole instance of plotting the target perform is listed under.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# 3d plot of the take a look at perform from numpy import arange from numpy import meshgrid from matplotlib import pyplot
# goal perform def goal(x, y): return x**2.0 + y**2.0
# outline vary for enter r_min, r_max = –1.0, 1.0 # pattern enter vary uniformly at 0.1 increments xaxis = arange(r_min, r_max, 0.1) yaxis = arange(r_min, r_max, 0.1) # create a mesh from the axis x, y = meshgrid(xaxis, yaxis) # compute targets outcomes = goal(x, y) # create a floor plot with the jet colour scheme determine = pyplot.determine() axis = determine.gca(projection=‘3d’) axis.plot_surface(x, y, outcomes, cmap=‘jet’) # present the plot pyplot.present() |
Operating the instance creates a three-dimensional floor plot of the target perform.
We are able to see the acquainted bowl form with the worldwide minima at f(0, 0) = 0.

Three-Dimensional Plot of the Take a look at Goal Operate
We are able to additionally create a two-dimensional plot of the perform. This shall be useful later after we wish to plot the progress of the search.
The instance under creates a contour plot of the target perform.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# contour plot of the take a look at perform from numpy import asarray from numpy import arange from numpy import meshgrid from matplotlib import pyplot
# goal perform def goal(x, y): return x**2.0 + y**2.0
# outline vary for enter bounds = asarray([[–1.0, 1.0], [–1.0, 1.0]]) # pattern enter vary uniformly at 0.1 increments xaxis = arange(bounds[0,0], bounds[0,1], 0.1) yaxis = arange(bounds[1,0], bounds[1,1], 0.1) # create a mesh from the axis x, y = meshgrid(xaxis, yaxis) # compute targets outcomes = goal(x, y) # create a stuffed contour plot with 50 ranges and jet colour scheme pyplot.contourf(x, y, outcomes, ranges=50, cmap=‘jet’) # present the plot pyplot.present() |
Operating the instance creates a two-dimensional contour plot of the target perform.
We are able to see the bowl form compressed to contours proven with a colour gradient. We’ll use this plot to plot the particular factors explored through the progress of the search.

Two-Dimensional Contour Plot of the Take a look at Goal Operate
Now that we’ve got a take a look at goal perform, let’s have a look at how we’d implement the Nesterov Momentum optimization algorithm.
Gradient Descent Optimization With Nesterov Momentum
We are able to apply the gradient descent with Nesterov Momentum to the take a look at drawback.
First, we’d like a perform that calculates the spinoff for this perform.
The spinoff of x^2 is x * 2 in every dimension and the spinoff() perform implements this under.
# spinoff of goal perform def spinoff(x, y): return asarray([x * 2.0, y * 2.0]) |
Subsequent, we will implement gradient descent optimization.
First, we will choose a random level within the bounds of the issue as a place to begin for the search.
This assumes we’ve got an array that defines the bounds of the search with one row for every dimension and the primary column defines the minimal and the second column defines the utmost of the dimension.
... # generate an preliminary level answer = bounds[:, 0] + rand(len(bounds)) * (bounds[:, 1] – bounds[:, 0]) |
Subsequent, we have to calculate the projected level from the present place and calculate its spinoff.
... # calculate the projected answer projected = [solution[i] + momentum * change[i] for i in vary(answer.form[0])] # calculate the gradient for the projection gradient = spinoff(projected[0], projected[1]) |
We are able to then create the brand new answer, one variable at a time.
First, the change within the variable is calculated utilizing the partial spinoff and studying price with the momentum from the final change within the variable. This variation is saved for the subsequent iteration of the algorithm. Then the change is used to calculate the brand new worth for the variable.
... # construct an answer one variable at a time new_solution = checklist() for i in vary(answer.form[0]): # calculate the change change[i] = (momentum * change[i]) – step_size * gradient[i] # calculate the brand new place on this variable worth = answer[i] + change[i] # retailer this variable new_solution.append(worth) |
That is repeated for every variable for the target perform, then repeated for every iteration of the algorithm.
This new answer can then be evaluated utilizing the goal() perform and the efficiency of the search could be reported.
... # consider candidate level answer = asarray(new_solution) solution_eval = goal(answer[0], answer[1]) # report progress print(‘>%d f(%s) = %.5f’ % (it, answer, solution_eval)) |
And that’s it.
We are able to tie all of this collectively right into a perform named nesterov() that takes the names of the target perform and the spinoff perform, an array with the bounds of the area and hyperparameter values for the whole variety of algorithm iterations, the training price, and the momentum, and returns the ultimate answer and its analysis.
This whole perform is listed under.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# gradient descent algorithm with nesterov momentum def nesterov(goal, spinoff, bounds, n_iter, step_size, momentum): # generate an preliminary level answer = bounds[:, 0] + rand(len(bounds)) * (bounds[:, 1] – bounds[:, 0]) # checklist of adjustments made to every variable change = [0.0 for _ in range(bounds.shape[0])] # run the gradient descent for it in vary(n_iter): # calculate the projected answer projected = [solution[i] + momentum * change[i] for i in vary(answer.form[0])] # calculate the gradient for the projection gradient = spinoff(projected[0], projected[1]) # construct an answer one variable at a time new_solution = checklist() for i in vary(answer.form[0]): # calculate the change change[i] = (momentum * change[i]) – step_size * gradient[i] # calculate the brand new place on this variable worth = answer[i] + change[i] # retailer this variable new_solution.append(worth) # consider candidate level answer = asarray(new_solution) solution_eval = goal(answer[0], answer[1]) # report progress print(‘>%d f(%s) = %.5f’ % (it, answer, solution_eval)) return [solution, solution_eval] |
Word, we’ve got deliberately used lists and crucial coding model as an alternative of vectorized operations for readability. Be at liberty to adapt the implementation to a vectorization implementation with NumPy arrays for higher efficiency.
We are able to then outline our hyperparameters and name the nesterov() perform to optimize our take a look at goal perform.
On this case, we are going to use 30 iterations of the algorithm with a studying price of 0.1 and momentum of 0.3. These hyperparameter values had been discovered after a bit of trial and error.
... # seed the pseudo random quantity generator seed(1) # outline vary for enter bounds = asarray([[–1.0, 1.0], [–1.0, 1.0]]) # outline the whole iterations n_iter = 30 # outline the step measurement step_size = 0.1 # outline momentum momentum = 0.3 # carry out the gradient descent search with nesterov momentum finest, rating = nesterov(goal, spinoff, bounds, n_iter, step_size, momentum) print(‘Executed!’) print(‘f(%s) = %f’ % (finest, rating)) |
Tying all of this collectively, the whole instance of gradient descent optimization with Nesterov Momentum is listed under.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# gradient descent optimization with nesterov momentum for a two-dimensional take a look at perform from math import sqrt from numpy import asarray from numpy.random import rand from numpy.random import seed
# goal perform def goal(x, y): return x**2.0 + y**2.0
# spinoff of goal perform def spinoff(x, y): return asarray([x * 2.0, y * 2.0])
# gradient descent algorithm with nesterov momentum def nesterov(goal, spinoff, bounds, n_iter, step_size, momentum): # generate an preliminary level answer = bounds[:, 0] + rand(len(bounds)) * (bounds[:, 1] – bounds[:, 0]) # checklist of adjustments made to every variable change = [0.0 for _ in range(bounds.shape[0])] # run the gradient descent for it in vary(n_iter): # calculate the projected answer projected = [solution[i] + momentum * change[i] for i in vary(answer.form[0])] # calculate the gradient for the projection gradient = spinoff(projected[0], projected[1]) # construct an answer one variable at a time new_solution = checklist() for i in vary(answer.form[0]): # calculate the change change[i] = (momentum * change[i]) – step_size * gradient[i] # calculate the brand new place on this variable worth = answer[i] + change[i] # retailer this variable new_solution.append(worth) # consider candidate level answer = asarray(new_solution) solution_eval = goal(answer[0], answer[1]) # report progress print(‘>%d f(%s) = %.5f’ % (it, answer, solution_eval)) return [solution, solution_eval]
# seed the pseudo random quantity generator seed(1) # outline vary for enter bounds = asarray([[–1.0, 1.0], [–1.0, 1.0]]) # outline the whole iterations n_iter = 30 # outline the step measurement step_size = 0.1 # outline momentum momentum = 0.3 # carry out the gradient descent search with nesterov momentum finest, rating = nesterov(goal, spinoff, bounds, n_iter, step_size, momentum) print(‘Executed!’) print(‘f(%s) = %f’ % (finest, rating)) |
Operating the instance applies the optimization algorithm with Nesterov Momentum to our take a look at drawback and reviews efficiency of the seek for every iteration of the algorithm.
Word: Your outcomes might differ given the stochastic nature of the algorithm or analysis process, or variations in numerical precision. Think about working the instance a couple of occasions and evaluate the common end result.
On this case, we will see {that a} close to optimum answer was discovered after maybe 15 iterations of the search, with enter values close to 0.0 and 0.0, evaluating to 0.0.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
>0 f([-0.13276479 0.35251919]) = 0.14190 >1 f([-0.09824595 0.2608642 ]) = 0.07770 >2 f([-0.07031223 0.18669416]) = 0.03980 >3 f([-0.0495457 0.13155452]) = 0.01976 >4 f([-0.03465259 0.0920101 ]) = 0.00967 >5 f([-0.02414772 0.06411742]) = 0.00469 >6 f([-0.01679701 0.04459969]) = 0.00227 >7 f([-0.01167344 0.0309955 ]) = 0.00110 >8 f([-0.00810909 0.02153139]) = 0.00053 >9 f([-0.00563183 0.01495373]) = 0.00026 >10 f([-0.00391092 0.01038434]) = 0.00012 >11 f([-0.00271572 0.00721082]) = 0.00006 >12 f([-0.00188573 0.00500701]) = 0.00003 >13 f([-0.00130938 0.0034767 ]) = 0.00001 >14 f([-0.00090918 0.00241408]) = 0.00001 >15 f([-0.0006313 0.00167624]) = 0.00000 >16 f([-0.00043835 0.00116391]) = 0.00000 >17 f([-0.00030437 0.00080817]) = 0.00000 >18 f([-0.00021134 0.00056116]) = 0.00000 >19 f([-0.00014675 0.00038964]) = 0.00000 >20 f([-0.00010189 0.00027055]) = 0.00000 >21 f([-7.07505806e-05 1.87858067e-04]) = 0.00000 >22 f([-4.91260884e-05 1.30440372e-04]) = 0.00000 >23 f([-3.41109926e-05 9.05720503e-05]) = 0.00000 >24 f([-2.36851711e-05 6.28892431e-05]) = 0.00000 >25 f([-1.64459397e-05 4.36675208e-05]) = 0.00000 >26 f([-1.14193362e-05 3.03208033e-05]) = 0.00000 >27 f([-7.92908415e-06 2.10534304e-05]) = 0.00000 >28 f([-5.50560682e-06 1.46185748e-05]) = 0.00000 >29 f([-3.82285090e-06 1.01504945e-05]) = 0.00000 Executed! f([-3.82285090e-06 1.01504945e-05]) = 0.000000 |
Visualization of Nesterov Momentum
We are able to plot the progress of the Nesterov Momentum search on a contour plot of the area.
This will present an instinct for the progress of the search over the iterations of the algorithm.
We should replace the nesterov() perform to take care of an inventory of all options discovered through the search, then return this checklist on the finish of the search.
The up to date model of the perform with these adjustments is listed under.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# gradient descent algorithm with nesterov momentum def nesterov(goal, spinoff, bounds, n_iter, step_size, momentum): # monitor all options options = checklist() # generate an preliminary level answer = bounds[:, 0] + rand(len(bounds)) * (bounds[:, 1] – bounds[:, 0]) # checklist of adjustments made to every variable change = [0.0 for _ in range(bounds.shape[0])] # run the gradient descent for it in vary(n_iter): # calculate the projected answer projected = [solution[i] + momentum * change[i] for i in vary(answer.form[0])] # calculate the gradient for the projection gradient = spinoff(projected[0], projected[1]) # construct an answer one variable at a time new_solution = checklist() for i in vary(answer.form[0]): # calculate the change change[i] = (momentum * change[i]) – step_size * gradient[i] # calculate the brand new place on this variable worth = answer[i] + change[i] # retailer this variable new_solution.append(worth) # retailer the brand new answer answer = asarray(new_solution) options.append(answer) # consider candidate level solution_eval = goal(answer[0], answer[1]) # report progress print(‘>%d f(%s) = %.5f’ % (it, answer, solution_eval)) return options |
We are able to then execute the search as earlier than, and this time retrieve the checklist of options as an alternative of the perfect closing answer.
... # seed the pseudo random quantity generator seed(1) # outline vary for enter bounds = asarray([[–1.0, 1.0], [–1.0, 1.0]]) # outline the whole iterations n_iter = 50 # outline the step measurement step_size = 0.01 # outline momentum momentum = 0.8 # carry out the gradient descent search with nesterov momentum options = nesterov(goal, spinoff, bounds, n_iter, step_size, momentum) |
We are able to then create a contour plot of the target perform, as earlier than.
... # pattern enter vary uniformly at 0.1 increments xaxis = arange(bounds[0,0], bounds[0,1], 0.1) yaxis = arange(bounds[1,0], bounds[1,1], 0.1) # create a mesh from the axis x, y = meshgrid(xaxis, yaxis) # compute targets outcomes = goal(x, y) # create a stuffed contour plot with 50 ranges and jet colour scheme pyplot.contourf(x, y, outcomes, ranges=50, cmap=‘jet’) |
Lastly, we will plot every answer discovered through the search as a white dot linked by a line.
... # plot the pattern as black circles options = asarray(options) pyplot.plot(options[:, 0], options[:, 1], ‘.-‘, colour=‘w’) |
Tying this all collectively, the whole instance of performing the Nesterov Momentum optimization on the take a look at drawback and plotting the outcomes on a contour plot is listed under.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# instance of plotting the nesterov momentum search on a contour plot of the take a look at perform from math import sqrt from numpy import asarray from numpy import arange from numpy.random import rand from numpy.random import seed from numpy import meshgrid from matplotlib import pyplot from mpl_toolkits.mplot3d import Axes3D
# goal perform def goal(x, y): return x**2.0 + y**2.0
# spinoff of goal perform def spinoff(x, y): return asarray([x * 2.0, y * 2.0])
# gradient descent algorithm with nesterov momentum def nesterov(goal, spinoff, bounds, n_iter, step_size, momentum): # monitor all options options = checklist() # generate an preliminary level answer = bounds[:, 0] + rand(len(bounds)) * (bounds[:, 1] – bounds[:, 0]) # checklist of adjustments made to every variable change = [0.0 for _ in range(bounds.shape[0])] # run the gradient descent for it in vary(n_iter): # calculate the projected answer projected = [solution[i] + momentum * change[i] for i in vary(answer.form[0])] # calculate the gradient for the projection gradient = spinoff(projected[0], projected[1]) # construct an answer one variable at a time new_solution = checklist() for i in vary(answer.form[0]): # calculate the change change[i] = (momentum * change[i]) – step_size * gradient[i] # calculate the brand new place on this variable worth = answer[i] + change[i] # retailer this variable new_solution.append(worth) # retailer the brand new answer answer = asarray(new_solution) options.append(answer) # consider candidate level solution_eval = goal(answer[0], answer[1]) # report progress print(‘>%d f(%s) = %.5f’ % (it, answer, solution_eval)) return options
# seed the pseudo random quantity generator seed(1) # outline vary for enter bounds = asarray([[–1.0, 1.0], [–1.0, 1.0]]) # outline the whole iterations n_iter = 50 # outline the step measurement step_size = 0.01 # outline momentum momentum = 0.8 # carry out the gradient descent search with nesterov momentum options = nesterov(goal, spinoff, bounds, n_iter, step_size, momentum) # pattern enter vary uniformly at 0.1 increments xaxis = arange(bounds[0,0], bounds[0,1], 0.1) yaxis = arange(bounds[1,0], bounds[1,1], 0.1) # create a mesh from the axis x, y = meshgrid(xaxis, yaxis) # compute targets outcomes = goal(x, y) # create a stuffed contour plot with 50 ranges and jet colour scheme pyplot.contourf(x, y, outcomes, ranges=50, cmap=‘jet’) # plot the pattern as black circles options = asarray(options) pyplot.plot(options[:, 0], options[:, 1], ‘.-‘, colour=‘w’) # present the plot pyplot.present() |
Operating the instance performs the search as earlier than, besides on this case, the contour plot of the target perform is created.
On this case, we will see {that a} white dot is proven for every answer discovered through the search, beginning above the optima and progressively getting nearer to the optima on the middle of the plot.

Contour Plot of the Take a look at Goal Operate With Nesterov Momentum Search Outcomes Proven
Additional Studying
This part offers extra assets on the subject in case you are seeking to go deeper.
Papers
Books
APIs
Articles
Abstract
On this tutorial, you found the way to develop the gradient descent optimization with Nesterov Momentum from scratch.
Particularly, you realized:
- Gradient descent is an optimization algorithm that makes use of the gradient of the target perform to navigate the search house.
- The convergence of gradient descent optimization algorithm could be accelerated by extending the algorithm and including Nesterov Momentum.
- implement the Nesterov Momentum optimization algorithm from scratch and apply it to an goal perform and consider the outcomes.
Do you may have any questions?
Ask your questions within the feedback under and I’ll do my finest to reply.



3 Methods For Constructing A Vibrant Tradition Of Studying With A Distant Crew

Google For Startups: Serving to greenhorn ventures bloom

China is finding out crypto as an funding instrument, says PBoC deputy governor

33 Black Historical past Month Actions for February and Past

Entrance-Finish Efficiency Guidelines 2021 — Smashing Journal
