Fixed print statement

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
Jim Martens 2019-07-15 10:54:04 +02:00
parent 2ecc0023f8
commit 78e00449ec
1 changed files with 2 additions and 2 deletions

View File

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