Skip to content

Commit 9547ac5

Browse files
committedMay 19, 2022
bug fix - not calculate cls_loss when class 1
1 parent c6393b5 commit 9547ac5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎train/loss.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def compute_loss(self, pred, targets = None, yolo_layers = None, tmp_img = None)
5050

5151
tobj[batch_id, anc_id, gy, gx] = iou.detach().clamp(0).type(tobj.dtype)
5252

53-
if ps.size(1) - 5 > 1:
53+
if ps.size(1) - 5 >= 1:
5454
#all class loss
5555
t = torch.zeros_like(ps[...,5:], device=self.device)
5656
t[range(num_targets), tcls[pidx]] = 1

0 commit comments

Comments
 (0)