About 362,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 function …

  2. Gradient Descent Algorithm in Machine Learning

    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. The idea of gradient descent is then to move in the direction that minimizes the approximation of the objective above, that is, move a certain amount > 0 in the direction −∇ ( ) of steepest descent of the …

  4. What is the Gradient Descent Algorithm - Analytics Vidhya

    Apr 4, 2025 · Similarly, gradient descent is the go-to algorithm for navigating the complex landscape of machine learning and deep learning. It helps models find the optimal set of parameters by iteratively …

  5. Understanding Gradient Descent in AI/ML

    Jan 22, 2025 · Gradient Descent is an iterative optimization algorithm used to minimize a cost (or loss) function. It adjusts model parameters (weights and biases) step-by-step to reduce the error in …

  6. Linear regression: Gradient descent - Google Developers

    3 days ago · 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 determine that a...

  7. 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, rely on …

  8. Gradient Descent Algorithm Survey - arXiv.org

    Nov 27, 2025 · Optimization algorithms are the backbone of deep-learning training; their design directly determines how fast a model converges, how stable the training process is, and how well the final …

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

    Sep 23, 2024 · Gradient descent is an optimization algorithm used to minimize the cost function in machine learning and deep learning models. It iteratively updates model parameters in the direction …

  10. What is Gradient Descent - GeeksforGeeks

    Sep 29, 2025 · Gradient Descent is an iterative optimization algorithm used to minimize a cost function by adjusting model parameters in the direction of the steepest descent of the function’s gradient.