From 311be36acf35f0bd9ef35d7f84bd91acf11c9914 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Tue, 9 Jul 2019 12:21:08 +0200 Subject: [PATCH] Fixed requesting non-existent property 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 4672d57..6ceda4f 100644 --- a/src/twomartens/masterthesis/cli.py +++ b/src/twomartens/masterthesis/cli.py @@ -344,7 +344,7 @@ def _ssd_test(args: argparse.Namespace) -> None: test_generator, length_dataset = \ data.load_scenenet_data(file_names_photos, instances, coco_path, - predictor_sizes=ssd_model.predictor_sizes, + predictor_sizes=None, batch_size=batch_size, resized_shape=(image_size, image_size), training=False, evaluation=True, augment=False,