From a9a82a3972ba2135b2865c9bbdb0279aac242fde Mon Sep 17 00:00:00 2001 From: Hendrik Schreiber Date: Fri, 11 Oct 2024 14:58:12 +0200 Subject: [PATCH] Show where the model loaded from. --- tempocnn/classifier.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tempocnn/classifier.py b/tempocnn/classifier.py index c4deb02..b3b253c 100644 --- a/tempocnn/classifier.py +++ b/tempocnn/classifier.py @@ -85,6 +85,7 @@ def __init__(self, model_name='fcn'): print('Failed to find a model named \'{}\'. Please check the model name.'.format(model_name), file=sys.stderr) raise e + logger.debug(f"Loading model {model_name} from {file}") self.model = load_model(file) def estimate(self, data):