From d8f57f7301f51c33d30e23ecac507300dfccc9e1 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Mon, 29 Apr 2019 10:57:05 +0200 Subject: [PATCH] Debug print decoded 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 41d7a65..2e58ad3 100644 --- a/src/twomartens/masterthesis/ssd.py +++ b/src/twomartens/masterthesis/ssd.py @@ -185,6 +185,7 @@ def _predict_one_epoch(dataset: tf.data.Dataset, decoded_predictions_batch.append(ssd(inputs)) # save predictions batch-wise to prevent memory problems + print(decoded_predictions_batch) with open(f"{output_file}-{counter:d}.npy", 'wb') as file: np.save(file, decoded_predictions_batch, allow_pickle=False, fix_imports=False)