From 6f543b947e124a618b533c4eae55fa00c9e66051 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Mon, 9 Sep 2019 09:32:48 +0200 Subject: [PATCH] Removed entropy from structured array Signed-off-by: Jim Martens --- src/twomartens/masterthesis/ssd.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/twomartens/masterthesis/ssd.py b/src/twomartens/masterthesis/ssd.py index 72740d0..ef203e4 100644 --- a/src/twomartens/masterthesis/ssd.py +++ b/src/twomartens/masterthesis/ssd.py @@ -453,7 +453,6 @@ def _apply_top_k(detections: Sequence[np.ndarray], top_k: float) -> List[np.ndar batch_size = len(detections) data_type = np.dtype([('class_id', np.int32), ('confidence', 'f4'), - ('entropy', 'f4'), ('xmin', 'f4'), ('ymin', 'f4'), ('xmax', 'f4'),