From 78e00449ec236f8c5be7a3cffbafb7f0a77afdde Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Mon, 15 Jul 2019 10:54:04 +0200 Subject: [PATCH] Fixed print statement 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 79cbf86..9115dcd 100644 --- a/src/twomartens/masterthesis/ssd.py +++ b/src/twomartens/masterthesis/ssd.py @@ -340,10 +340,10 @@ def _predict_save_images(inputs: np.ndarray, predictions: np.ndarray, get_coco_cat_maps_func: callable, output_path: str, coco_path: str, image_size: int) -> None: - print( + print(( f"Input shape: {inputs.shape}" f"Predictions shape: {predictions.shape}" - ) + )) save_images(inputs, predictions, output_path, coco_path, image_size, get_coco_cat_maps_func, "after-prediction")