INNER CODE UNIT · Python
b_curr
TheAlgorithms/Jupyter · gradient_descent.py:15
b_curr = b_curr - learning_rate * bd
print ("m {}, b {}, cost {} iteration {}".format(m_curr,b_curr,cost, i))
x = np.array([1,2,3,4,5])
y = np.array([5,7,9,11,13])
gradient_descent(x,y)