From 29522921f1e8448223d0fc1718739e1aee584b4e Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Mon, 5 Aug 2019 13:48:21 +0200 Subject: [PATCH] Fixed typo Signed-off-by: Jim Martens --- src/twomartens/masterthesis/ssd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/twomartens/masterthesis/ssd.py b/src/twomartens/masterthesis/ssd.py index 97e47a4..d721bb2 100644 --- a/src/twomartens/masterthesis/ssd.py +++ b/src/twomartens/masterthesis/ssd.py @@ -358,7 +358,7 @@ def _decode_predictions(predictions: np.ndarray, image_size: int, entropy_threshold: float, confidence_threshold: float, - iou_thresholdd: float) -> np.ndarray: + iou_threshold: float) -> np.ndarray: return decode_func( y_pred=predictions, img_width=image_size, @@ -366,7 +366,7 @@ def _decode_predictions(predictions: np.ndarray, input_coords="corners", entropy_thresh=entropy_threshold, confidence_thresh=confidence_threshold, - iou_threshold=iou_thresholdd + iou_threshold=iou_threshold )