From 73db0effecd348bc458cc6378cc05a80bb01372f Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sun, 19 Dec 2021 16:35:48 +0100 Subject: [PATCH] Update --- classifier.py | 1 + 1 file changed, 1 insertion(+) diff --git a/classifier.py b/classifier.py index 5811aeee6..1c12c1a06 100644 --- a/classifier.py +++ b/classifier.py @@ -242,6 +242,7 @@ def imshow(img, labels=None, pred=None, names=None, f=Path('images.jpg')): print('True: ', ' '.join(f'{names[i]:3s}' for i in labels)) if pred is not None: print('Predicted:', ' '.join(f'{names[i]:3s}' for i in pred)) + print(f'imshow() results saved to {f}') if __name__ == '__main__':