SIGNAL//DESK
AI/MLsrc: curated AI glossary

Gradient descent

A method for training AI by making tiny, repeated adjustments to its internal settings, always moving in the direction that reduces its mistakes until it gets the best possible result.

An iterative optimization algorithm used to train neural networks by calculating the gradient of the loss function with respect to model parameters and updating those parameters in the opposite direction to minimize error.

A first-order iterative optimization algorithm for finding the local minimum of a differentiable objective function; it updates parameters via the rule θ = θ - η∇J(θ), where η is the learning rate and ∇J(θ) is the gradient of the loss function, effectively navigating the loss landscape toward lower error.

evolution

  1. 1847 · history
    Method of Steepest Descent

    Augustin-Louis Cauchy published the first formal description of the steepest descent method for finding local minima.

  2. 1944 · history
    Curry's Optimization

    Haskell Curry provided the first convergence analysis for the method of steepest descent in Hilbert spaces.

  3. 1986 · history
    Backpropagation Popularization

    Rumelhart, Hinton, and Williams demonstrated that gradient descent could efficiently train multi-layer neural networks.

  4. 2011 · history
    Nesterov Accelerated Gradient

    Yurii Nesterov's momentum-based optimization techniques became standard for accelerating convergence in deep learning.

  5. 2014 · history
    Adam Optimizer

    Kingma and Ba introduced Adam, an adaptive moment estimation algorithm that became the default optimizer for most modern AI models.


← all terms