About 401,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. Gradient Descent Algorithm in Machine Learning - GeeksforGeeks

    Jul 11, 2025 · Gradient Descent is used to iteratively update the weights (coefficients) and bias by computing the gradient of the MSE with respect to these parameters. Since MSE is a convex …

  3. ysis for -smooth functions In order to give concrete rates for the convergence of gradient descent, we will make some assump-tions regarding the . moothness of the function. In particular, we …

  4. Gradient Descent: A Beginner-Friendly Guide to How Models Learn

    1 day ago · Most modern ML models—from simple regressions to deep neural networks—learn using the core idea i.e. Gradient Descent. It’s an optimization method that adjusts model …

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

    Feb 28, 2025 · Gradient Descent is the core optimization algorithm for machine learning and deep learning models. Almost all modern AI architectures, including GPT-4, ResNet and AlphaGo, …

  6. Linear regression: Gradient descent - Google Developers

    Dec 3, 2025 · Learn how gradient descent iteratively finds the weight and bias that minimize a model's loss. This page explains how the gradient descent algorithm works, and how to …

  7. Implementing Gradient Descent from Scratch: A Step-by-Step …

    May 18, 2025 · What is Gradient Descent? Gradient Descent is an iterative optimization algorithm used to minimize a function by moving in the direction of the steepest descent, as defined by …

  8. strained optimiza-tion problem: min f(x). x∈Rd For most of today we’l. also assume that f is diferentiable everywhere. A classical method to solve such optimization problems is gradient …

  9. Gradient Descent in Machine Learning: A Deep Dive - DataCamp

    Sep 23, 2024 · Gradient descent is one of the most important algorithms in all of machine learning and deep learning. It is an extremely powerful optimization algorithm that can train linear …

  10. Gradient Descent Unraveled - Towards Data Science

    Nov 14, 2020 · First, let us begin with the concepts of maxima, minima, global and local. I’ll explain these concepts for functions of a single variable because they are easy to visualize. …