Fixed typo

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2019-08-05 13:48:21 +02:00
parent 37d5e32031
commit 29522921f1

View File

@ -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
)