Skip to content

Commit

Permalink
always printing losses should not be there besides for debugging
Browse files Browse the repository at this point in the history
Former-commit-id: 22dd9b584cf13d1f98c5d4efd27bf94a44862a40
  • Loading branch information
Javi Ribera committed Oct 4, 2018
1 parent 2a57b29 commit 6f941ea
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion object-locator/losses.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,6 @@ def forward(self, prob_map, gt, orig_sizes):

if self.return_2_terms:
res = terms_1.mean(), terms_2.mean()
print(res)
else:
res = terms_1.mean() + terms_2.mean()

Expand Down

0 comments on commit 6f941ea

Please sign in to comment.