Skip to content

Commit

Permalink
Remove printing precision
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashwin Vaidya committed Dec 13, 2023
1 parent 7c1c62d commit 0012783
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model_api/python/openvino/model_api/models/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __str__(self) -> str:
anomaly_map_min, anomaly_map_max = self._compute_min_max(self.anomaly_map)
pred_mask_min, pred_mask_max = self._compute_min_max(self.pred_mask)
return (
f"anomaly_map min:{anomaly_map_min:.3f} max:{anomaly_map_max};"
f"anomaly_map min:{anomaly_map_min} max:{anomaly_map_max};"
f"pred_score:{self.pred_score};"
f"pred_label:{self.pred_label};"
f"pred_mask min:{pred_mask_min} max:{pred_mask_max};"
Expand Down

0 comments on commit 0012783

Please sign in to comment.