aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lenet.py2
1 files changed, 0 insertions, 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]