From 4886fda32edd9073221159a877efb4a68b5793d9 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Sun, 7 Jul 2019 13:43:19 +0200 Subject: [PATCH] Added missing argument for function call 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 8bb20ae..ab68074 100644 --- a/src/twomartens/masterthesis/cli.py +++ b/src/twomartens/masterthesis/cli.py @@ -325,7 +325,7 @@ def _ssd_test(args: argparse.Namespace) -> None: predictor_sizes=ssd_model.predictor_sizes, batch_size=batch_size, resized_shape=image_size, - training=False, evaluation=True) + training=False, evaluation=True, augment=False) del file_names_photos, instances nr_digits = math.ceil(math.log10(math.ceil(length_dataset / batch_size)))