Skip to content

Commit

Permalink
remove TTA 1 pixel offset (ultralytics#2325)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Mar 1, 2021
1 parent d4ef221 commit 497f7e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/yolo.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ def forward(self, x, augment=False, profile=False):
# cv2.imwrite(f'img_{si}.jpg', 255 * xi[0].cpu().numpy().transpose((1, 2, 0))[:, :, ::-1]) # save
yi[..., :4] /= si # de-scale
if fi == 2:
yi[..., 1] = img_size[0] - 1 - yi[..., 1] # de-flip ud
yi[..., 1] = img_size[0] - yi[..., 1] # de-flip ud
elif fi == 3:
yi[..., 0] = img_size[1] - 1 - yi[..., 0] # de-flip lr
yi[..., 0] = img_size[1] - yi[..., 0] # de-flip lr
y.append(yi)
return torch.cat(y, 1), None # augmented inference, train
else:
Expand Down

0 comments on commit 497f7e6

Please sign in to comment.