From 5e50be22dc3483222fe6a3796c1123f44e560270 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Thu, 12 Sep 2019 17:41:00 +0200 Subject: [PATCH] Updated predictions glob string for new suffixes Signed-off-by: Jim Martens --- src/twomartens/masterthesis/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/twomartens/masterthesis/cli.py b/src/twomartens/masterthesis/cli.py index 652b659..33777cb 100644 --- a/src/twomartens/masterthesis/cli.py +++ b/src/twomartens/masterthesis/cli.py @@ -785,7 +785,7 @@ def _ssd_evaluate_prepare_paths(args: argparse.Namespace, filenames_file = f"{output_path}/filenames.bin" predictions_file = f"{output_path}/predictions" predictions_per_class_file = f"{output_path}/predictions_class" - predictions_glob_string = f"{output_path}/*ssd_prediction*" + predictions_glob_string = f"{output_path}/*ssd_predictions_transformed*" label_glob_string = f"{output_path}/*ssd_label*" os.makedirs(evaluation_path, exist_ok=True)