diff --git a/Module 2/Linear Regression.ipynb b/Module 2/Linear Regression.ipynb index aa94276..4652c5d 100644 --- a/Module 2/Linear Regression.ipynb +++ b/Module 2/Linear Regression.ipynb @@ -115,6 +115,7 @@ "theta = np.zeros((2,1))\n", "theta = np.matrix(theta)\n", "X = np.matrix(X)\n", + "y=y_init\n", "X[0:5]" ] },