diff options
author | Vasil Zlatanov <v@skozl.com> | 2019-02-27 18:57:30 +0000 |
---|---|---|
committer | Vasil Zlatanov <v@skozl.com> | 2019-02-27 18:57:30 +0000 |
commit | dccbc5c219abdf90c4810eed4c2ec6231bf9f140 (patch) | |
tree | c98d9706aa4449a9e080b78b31585e5a3fc44dd7 /lenet.py | |
parent | f4344da5fe4eec07efd3a1cee245975402afcfb8 (diff) | |
download | e4-gan-dccbc5c219abdf90c4810eed4c2ec6231bf9f140.tar.gz e4-gan-dccbc5c219abdf90c4810eed4c2ec6231bf9f140.tar.bz2 e4-gan-dccbc5c219abdf90c4810eed4c2ec6231bf9f140.zip |
Remove printing lines
Diffstat (limited to 'lenet.py')
-rw-r--r-- | lenet.py | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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] |