About 144,000 results
Open links in new tab
  1. How to implement a gradient descent in Python to find a ... - GeeksforGeeks

    Dec 14, 2022 · Gradient Descent can be applied to any dimension function i.e. 1-D, 2-D, 3-D. In this article, we will be working on finding global minima for parabolic function (2-D) and will be …

  2. Implementing Gradient Descent in Python from Scratch

    Feb 18, 2022 · Gradient Descent is an optimisation algorithm which helps you find the optimal weights for your model. It does it by trying various weights and finding the weights which fit the …

  3. Gradient Descent in Python: Implementation and Theory

    Nov 16, 2023 · Gradient descent is an optimization technique that can find the minimum of an objective function. It is a greedy technique that finds the optimal solution by taking a step in the …

  4. Gradient Descent: A comprehensive guide to Implementing in Python

    Jan 7, 2023 · By understanding how gradient descent works and how it can be used to solve linear regression problems, you can gain a deeper understanding of Gradient descent and …

  5. gradient descent using python and numpy - Stack Overflow

    Jul 22, 2013 · gradient = np.dot(xTrans, loss) / m. # update. theta = theta - alpha * gradient. return theta. x = np.zeros(shape=(numPoints, 2)) y = np.zeros(shape=numPoints) # basically a …

  6. Gradient descent algorithm with implementation from scratch

    Feb 27, 2023 · Gradient descent is an optimization algorithm used to minimize a cost function in machine learning and deep learning models. It is a first-order optimization algorithm that …

  7. Implementing Gradient descent in python | by Induraj | Medium

    Feb 21, 2023 · Gradient descent is a popular optimization algorithm used in machine learning and deep learning to find the optimal parameters or weights for a given model. The goal of gradient...

  8. Gradient Descent: A Step-by-Step Explanation with Python Implementation ...

    Mar 18, 2025 · In this article, we will implement and explain Gradient Descent for optimizing a convex function, covering both the mathematical concepts and the Python code …

  9. Gradient Descent in Python – A Step-by-Step Guide

    This article covers its iterative process of gradient descent in python for minimizing cost functions, various types like batch, or mini-batch and SGD , and provides insights into implementing it in …

  10. Gradient Descent in Python: A Comprehensive Guide

    Mar 18, 2025 · Gradient descent is a powerful optimization algorithm that forms the basis of many machine learning techniques. In Python, implementing gradient descent allows us to solve a …

Refresh