From 5cb3d2953b45f38835961a84f56f663497c5b369 Mon Sep 17 00:00:00 2001 From: tigco <15081919+tigco@users.noreply.github.com> Date: Mon, 17 Sep 2018 15:21:43 +0300 Subject: [PATCH] Update the selectThreshold() in Exercise 8 I believe some parameter specifications in selectThreshold() were incorrect due to a copy/paste error. Please take a look. thanks, Tigran --- Exercise8/exercise8.ipynb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Exercise8/exercise8.ipynb b/Exercise8/exercise8.ipynb index 3e4aa60..6af1975 100755 --- a/Exercise8/exercise8.ipynb +++ b/Exercise8/exercise8.ipynb @@ -298,11 +298,10 @@ " Parameters\n", " ----------\n", " yval : array_like\n", - " The validation dataset of shape (m x n) where m is the number \n", - " of examples an n is the number of dimensions(features).\n", + " The ground truth labels of shape (m, ).\n", " \n", " pval : array_like\n", - " The ground truth labels of shape (m, ).\n", + " The precomputed vector of probabilities based on mu and sigma2 parameters. It's shape is also (m, ).\n", " \n", " Returns\n", " -------\n",