Skip to content

Commit

Permalink
cleaning prints
Browse files Browse the repository at this point in the history
  • Loading branch information
tourniert committed Sep 4, 2024
1 parent db7bcbe commit ce045ae
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions mfai/torch/metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,6 @@ def compute_sub_results(preds, targets):
for channel in range(num_channels):
channel_preds = preds[:, channel, :, :]
channel_targets = targets[:, channel, :, :]
print(f"------- {channel} ------")
print(" ")
print(channel_preds)
print(" ")
print(channel_targets)
tp, fp, fn = compute_sub_results(channel_preds, channel_targets)
self.true_positives[channel] += tp
self.false_positives[channel] += fp
Expand Down

0 comments on commit ce045ae

Please sign in to comment.