Tried my version of the code to solve Exercise 2 (setting the threshold epsilon to get max F1 score)…after multiple attempts i ended up using the code given in the hints section to no avail!!
please help!
UNQ_C2
GRADED FUNCTION: select_threshold
def select_threshold(y_val, p_val):
"""
Finds the best threshold to use for selecting outliers
based on the results from a validation set (p_val)
and the ground truth (y_val)
Args:
y_val (ndarray): Ground truth on validation set
p_val (ndarray): Results on validation set
Returns:
epsilon (float): Threshold chosen
F1 (float): F1 score by choosing epsilon as threshold
"""
best_epsilon = 0
best_F1 = 0
F1 = 0
step_size = (max(p_val) - min(p_val)) / 1000
for epsilon in np.arange(min(p_val),max(p_val),step_size):
# moderator edit: code removed
return best_epsilon, best_F1
NameError Traceback (most recent call last)
in
1 # Find the outliers in the training set
----> 2 outliers = p < epsilon
3
4 # Visualize the fit
5 visualize_fit(X_train, mu, var)
NameError: name 'p' is not defined
{mentor edit: image and code removed}
NameError Traceback (most recent call last)
in
1 p_val = multivariate_gaussian(X_val, mu, var)
----> 2 epsilon, F1 = select_threshold(y_val, p_val)
3
4 print('Best epsilon found using cross-validation: e' epsilon)
5 print('Best F1 on Cross Validation Set: f' F1)
I have run all the cells, code has been written in Exercise 1 , after the code block i can see another which code has already been defined, post executing that block i can see the error, same for the Exercise 2 also.
and P defining this all in the next cell blocks.