From 06548dc8e56265a0deb4443c359f549a455267e8 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Thu, 11 Jul 2019 12:29:31 +0200 Subject: [PATCH] Fixed typo Signed-off-by: Jim Martens --- src/twomartens/masterthesis/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/twomartens/masterthesis/cli.py b/src/twomartens/masterthesis/cli.py index 83cc3f9..dc9b98e 100644 --- a/src/twomartens/masterthesis/cli.py +++ b/src/twomartens/masterthesis/cli.py @@ -183,7 +183,7 @@ def _ssd_train(args: argparse.Namespace) -> None: _init_eager_mode() batch_size, image_size, learning_rate, steps_per_val_epoch, nr_classes, \ - iou_treshold, dropout_rate, top_k, nr_trajectories, \ + iou_threshold, dropout_rate, top_k, nr_trajectories, \ coco_path, summary_path, weights_path, train_gt_path, val_gt_path, \ save_train_images, save_summaries = _ssd_train_get_config_values(conf.get_property) @@ -200,7 +200,7 @@ def _ssd_train(args: argparse.Namespace) -> None: image_size, nr_classes, "training", - iou_treshold, + iou_threshold, dropout_rate, top_k, pre_trained_weights_file)