About 2,810,000 results
Open links in new tab
  1. Gradient descent - Wikipedia

    It is a first-order iterative algorithm for minimizing a differentiable multivariate function. The idea is to take repeated steps in the opposite direction of the gradient (or approximate gradient) of the …

  2. What is gradient descent? - IBM

    What is gradient descent? Gradient descent is an optimization algorithm which is commonly-used to train machine learning models and neural networks. It trains machine learning models by …

  3. Gradient Descent Algorithm in Machine Learning - GeeksforGeeks

    Jul 11, 2025 · Neural networks are trained using Gradient Descent (or its variants) in combination with backpropagation. Backpropagation computes the gradients of the loss function with …

  4. Gradient descent, how neural networks learn - 3Blue1Brown

    Oct 16, 2017 · In the last lesson we explored the structure of a neural network. Now, let’s talk about how the network learns by seeing many labeled training data. The core idea is a method …

  5. Gradient Descent Explained: How It Works & Why It’s Key

    Feb 28, 2025 · Almost all modern AI architectures, including GPT-4, ResNet and AlphaGo, rely on Gradient Descent to adjust their weights, improving prediction accuracy. Without Gradient …

  6. Gradient Computation in Deep Learning: The Engine Behind Neural Network

    Dec 26, 2025 · Every time a neural network learns to recognize a face, translate a sentence, or predict stock prices, gradient computation is working behind the scenes. This fundamental …

  7. DL Notes: Gradient Descent - Towards Data Science

    Nov 4, 2023 · In this post, I’m going to describe the algorithm of gradient descent, which is used to adjust the weights of an ANN. Let’s start with the basic concepts. Imagine we are at the top of …

  8. Calculate gradients to determine how each model parameter contributed to model error. 4. Update each parameter using calculated gradients.

  9. What is the Gradient Descent Algorithm - Analytics Vidhya

    Apr 4, 2025 · Gradient descent can be applied to various machine learning algorithms, including linear regression, logistic regression, neural networks, and support vector machines. It …

  10. Intro to optimization in deep learning: Gradient Descent

    Aug 5, 2025 · An in-depth explanation of Gradient Descent and how to avoid the problems of local minima and saddle points.