aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasil Zlatanov <v@skozl.com>2019-02-27 18:57:30 +0000
committerVasil Zlatanov <v@skozl.com>2019-02-27 18:57:30 +0000
commitdccbc5c219abdf90c4810eed4c2ec6231bf9f140 (patch)
treec98d9706aa4449a9e080b78b31585e5a3fc44dd7
parentf4344da5fe4eec07efd3a1cee245975402afcfb8 (diff)
downloade4-gan-dccbc5c219abdf90c4810eed4c2ec6231bf9f140.tar.gz
e4-gan-dccbc5c219abdf90c4810eed4c2ec6231bf9f140.tar.bz2
e4-gan-dccbc5c219abdf90c4810eed4c2ec6231bf9f140.zip
Remove printing lines
-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]