...

/

Gradient Descent

Gradient Descent

Learn about what gradient descent is, why visualizing it is important, and the model being used.

Introduction to gradient descent

According to Wikipedia:

“Gradient descent is a first-order iterative optimization algorithm for finding a local minimum of a differentiable function.”

But if I were to describe it, I would say:

...

Gradient descent is an iterative technique commonly used in Machine Learning and Deep Learning to try to find the best possible set of parameters/coefficients for a given model, data points, and loss function, starting from an initial, and u ...