From fef7a1eac1436b537eb21c5f9f7f21e48518c58d Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Thu, 11 Jul 2019 14:59:47 +0200 Subject: [PATCH] Added missing function argument 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 4559e6d..1efb6aa 100644 --- a/src/twomartens/masterthesis/cli.py +++ b/src/twomartens/masterthesis/cli.py @@ -254,7 +254,7 @@ def _ssd_test(args: argparse.Namespace) -> None: batch_size, image_size, learning_rate, \ forward_passes_per_image, nr_classes, iou_threshold, dropout_rate, top_k, nr_trajectories, \ - coco_path, output_path, weights_path, ground_truth_path = _ssd_test_get_config_values(conf.get_property) + coco_path, output_path, weights_path, ground_truth_path = _ssd_test_get_config_values(args, conf.get_property) use_dropout = _ssd_is_dropout(args)