Updated predictions glob string for new suffixes

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
Jim Martens 2019-09-12 17:41:00 +02:00
parent b861270e51
commit 5e50be22dc
1 changed files with 1 additions and 1 deletions

View File

@ -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)