plt.plot(x,X@model_w + model_b)
what @ refers to here? is it same as np.dot(X,model_w)?
That’s a numpy shortcut for the np.dot() function.
plt.plot(x,X@model_w + model_b)
what @ refers to here? is it same as np.dot(X,model_w)?
That’s a numpy shortcut for the np.dot() function.