From dccbc5c219abdf90c4810eed4c2ec6231bf9f140 Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Wed, 27 Feb 2019 18:57:30 +0000 Subject: Remove printing lines --- lenet.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lenet.py b/lenet.py index fbcdd5d..a62138b 100644 --- a/lenet.py +++ b/lenet.py @@ -46,8 +46,6 @@ def plot_example_errors(y_pred, y_true, X_test): y_true = np.argmax(y_true, axis=1) correct_prediction = np.equal(y_pred, y_true) incorrect = np.equal(correct_prediction, False) - print(correct_prediction.shape) - print(incorrect[0]) images = X_test[incorrect] cls_pred = y_pred[incorrect] cls_true = y_true[incorrect] -- cgit v1.2.3