From b776472ce853e2f6dfcbc2eda3c5f237fce792b8 Mon Sep 17 00:00:00 2001 From: prathyoom <32796363+prathyoom@users.noreply.github.com> Date: Tue, 11 Dec 2018 01:26:56 +0530 Subject: [PATCH] bug with y --- Module 2/Linear Regression.ipynb | 1 + 1 file changed, 1 insertion(+) 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]" ] },