Difference between revisions of "Gradient descent"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Created page with "'''Gradient descent''' is a first-order iterative optimization algorithm. == Description == To find a local minimum of a function using gradie...")
 
Line 1: Line 1:
'''Gradient descent''' is a [[First-order method|first-order]] [[iterative]] optimization [[algorithm]].
+
'''Gradient descent''' is a [[First-order method|first-order]] [[Iterative method|iterative]] optimization [[algorithm]].
  
 
== Description ==
 
== Description ==
Line 13: Line 13:
 
* [[Delta rule]]
 
* [[Delta rule]]
 
* [[First-order method]]
 
* [[First-order method]]
 +
* [[Iterative method]]
 
* [[Nelder–Mead method]]
 
* [[Nelder–Mead method]]
 
* [[Preconditioning]]
 
* [[Preconditioning]]

Revision as of 20:36, 12 October 2016

Gradient descent is a first-order iterative optimization algorithm.

Description

To find a local minimum of a function using gradient descent, one takes steps proportional to the negative of the gradient (or of the approximate gradient) of the function at the current point. If instead one takes steps proportional to the positive of the gradient, one approaches a local maximum of that function; the procedure is then known as gradient ascent.

Gradient descent is also known as steepest descent, or the method of steepest descent. Gradient descent should not be confused with the method of steepest descent for approximating integrals.

See also

External links