Skip to content

Commit

Permalink
👕 Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
o-laurent committed Oct 26, 2023
1 parent 2b96285 commit 5e67064
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions torch_uncertainty/routines/classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,8 +597,6 @@ def test_epoch_end(
id_logits = torch.cat(outputs[0], 0).float().cpu()
ood_logits = torch.cat(outputs[1], 0).float().cpu()

print(id_logits.shape)

id_probs = F.softmax(id_logits, dim=-1)
ood_probs = F.softmax(ood_logits, dim=-1)

Expand Down

0 comments on commit 5e67064

Please sign in to comment.