From 8d3b6a072aac561a8565daf148c28751d6287117 Mon Sep 17 00:00:00 2001 From: Peter Deutsch Date: Mon, 6 Feb 2023 12:46:04 -0500 Subject: [PATCH] Update eval.py --- part4/eval.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/part4/eval.py b/part4/eval.py index e9369e7..7c13310 100644 --- a/part4/eval.py +++ b/part4/eval.py @@ -10,7 +10,7 @@ def eval(): # Re-train 10 times in order to reduce effects of randomness for i in range(10): - ### TODO: Exercise 5 + ### TODO: Exercise 4-1 ### 1. Load data from traces file ### 2. Split data into X_train, X_test, y_train, y_test with train_test_split ### 3. Train classifier with X_train and y_train @@ -20,7 +20,7 @@ def eval(): y_test_full.extend(y_test) y_pred_full.extend(y_pred) - ### TODO: Exercise 5 (continued) + ### TODO: Exercise 4-1 (continued) ### 5. Print classification report using y_test_full and y_pred_full if __name__ == "__main__":