From 412f0ac4530d79db8cbdc4ead420503ecb7486f5 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Tue, 9 Jul 2019 13:00:23 +0200 Subject: [PATCH] Added debug print for predictions Signed-off-by: Jim Martens --- src/twomartens/masterthesis/ssd.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/twomartens/masterthesis/ssd.py b/src/twomartens/masterthesis/ssd.py index 92bd2e0..b3b8243 100644 --- a/src/twomartens/masterthesis/ssd.py +++ b/src/twomartens/masterthesis/ssd.py @@ -204,6 +204,7 @@ def predict_keras(generator: callable, predictions = np.asarray(_get_observations(detections)) else: predictions = ssd_model.predict_on_batch(x) + print(predictions) decoded_predictions_batch = ssd_output_decoder.decode_detections_fast( y_pred=predictions,