From 3ebf1b352b0cf58bf7aa3339ab8b94bd8d0bc96d Mon Sep 17 00:00:00 2001 From: SanderHestvik Date: Sat, 9 Jan 2021 12:50:39 +0100 Subject: [PATCH] add minor fix in commented example code Exercise 6 --- Exercise6/exercise6.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercise6/exercise6.ipynb b/Exercise6/exercise6.ipynb index cdc4397..e7e1ffa 100755 --- a/Exercise6/exercise6.ipynb +++ b/Exercise6/exercise6.ipynb @@ -395,7 +395,7 @@ " You can use `svmPredict` to predict the labels on the cross\n", " validation set. For example, \n", " \n", - " predictions = svmPredict(model, Xval)\n", + " predictions = utils.svmPredict(model, Xval)\n", "\n", " will return the predictions on the cross validation set.\n", " \n",