From 015befd5429546be19da6aaa4849ff4e72fbd8df Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Thu, 18 Jul 2019 12:40:06 +0200 Subject: [PATCH] Fixed config values Signed-off-by: Jim Martens --- src/twomartens/masterthesis/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/twomartens/masterthesis/config.py b/src/twomartens/masterthesis/config.py index bd34118..7cd5cad 100644 --- a/src/twomartens/masterthesis/config.py +++ b/src/twomartens/masterthesis/config.py @@ -59,10 +59,10 @@ _CONFIG_PROPS = { "ssd_iou_threshold": (float, "0.45"), "ssd_top_k": (int, "200"), "ssd_dropout_rate": (float, "0.5"), - "ssd_use_entropy_threshold": (bool, False), + "ssd_use_entropy_threshold": (bool, "False"), "ssd_entropy_threshold_min": (float, "0.1"), "ssd_entropy_threshold_max": (float, "2.5"), - "ssd_test_pretrained": (bool, False), + "ssd_test_pretrained": (bool, "False"), "nr_trajectories": (int, "-1") } }