From 83f70b4fdbd5b71a340b59191205540d9af7c5fc Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Mon, 15 Jul 2019 16:56:51 +0200 Subject: [PATCH] Fixed mixed up paths 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 a7eb3aa..1ac1c6e 100644 --- a/src/twomartens/masterthesis/cli.py +++ b/src/twomartens/masterthesis/cli.py @@ -136,7 +136,7 @@ def visualise(args: argparse.Namespace) -> None: def measure_mapping(args: argparse.Namespace) -> None: from twomartens.masterthesis.ssd_keras.eval_utils import coco_utils - coco_path, output_path, ground_truth_path = _measure_get_config_values(conf.get_property) + output_path, coco_path, ground_truth_path = _measure_get_config_values(conf.get_property) output_path, annotation_file_train = _measure_prepare_paths(args, output_path, coco_path) instances, cats_to_classes = _measure_load_gt(ground_truth_path, annotation_file_train, coco_utils.get_coco_category_maps)