Tag: gradient-descent
-
Gradient Descent
Gradient Descent is an iterative optimization algorithm used to find the local minima/maxima of a given function. It is used very frequently in Machine Learning. Its application in ML is to reduce the cost/loss function which helps in choosing an efficient model. For gradient descent, the function must be: differentiable: it must have a derivable…