From a94d86462becbc4b86c263283918b266e5cadb98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Flores?= Date: Thu, 19 Oct 2017 13:11:56 +0100 Subject: [PATCH] Fix typo --- nn-from-scratch.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nn-from-scratch.ipynb b/nn-from-scratch.ipynb index 2afbf27..90cb51e 100644 --- a/nn-from-scratch.ipynb +++ b/nn-from-scratch.ipynb @@ -113,7 +113,7 @@ } ], "source": [ - "# Train the logistic regeression classifier\n", + "# Train the logistic regression classifier\n", "clf = sklearn.linear_model.LogisticRegressionCV()\n", "clf.fit(X, y)" ]