What is Gradient Descent in Machine Learning? Definition and Python Example
What is Gradient Descent? Gradient Descent (GD) is an optimization algorithm using gradient to help find a local minimum of a function. (For more details on gradients, please refer to my other tutorial.) When the function is convex, a local minimum is also the global minimum. Steps of Gradient Descent Algorithm Step 1: Calculate the gradient function. In … Read more