Skip to content

Commit

Permalink
Update detect.py non-inplace with y.tensor_split() (ultralytics#7062)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Mar 20, 2022
1 parent acf193a commit f692e07
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions models/yolo.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ def forward(self, x):
y[..., 0:2] = (y[..., 0:2] * 2 - 0.5 + self.grid[i]) * self.stride[i] # xy
y[..., 2:4] = (y[..., 2:4] * 2) ** 2 * self.anchor_grid[i] # wh
else: # for YOLOv5 on AWS Inferentia https://github.com/ultralytics/yolov5/pull/2953
xy = (y[..., 0:2] * 2 - 0.5 + self.grid[i]) * self.stride[i] # xy
wh = (y[..., 2:4] * 2) ** 2 * self.anchor_grid[i] # wh
y = torch.cat((xy, wh, y[..., 4:]), -1)
xy, wh, conf = y.tensor_split((2, 4), 4)
xy = (xy * 2 - 0.5 + self.grid[i]) * self.stride[i] # xy
wh = (wh * 2) ** 2 * self.anchor_grid[i] # wh
y = torch.cat((xy, wh, conf), 4)
z.append(y.view(bs, -1, self.no))

return x if self.training else (torch.cat(z, 1), x)
Expand Down

0 comments on commit f692e07

Please sign in to comment.