I am learning Gadient descent to find the minimum of a function. There I found a line of code as shown
m1' = m1 - alpha* d/dm1 j(m0,m1) # m0,m1 are weights, j(m0,m1) is the loss function
It is stated that the partial derivative of the cost function gives the "direction of fastest" decrease of cost. Can someone explain / elaborate it it?