Skip to content

Commit

Permalink
torch.split() replace slicing on out-of-place inference (ultralytic…
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Apr 3, 2022
1 parent 8f66a2e commit 044825d
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 @@ -66,9 +66,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 + (self.grid[i] - 0.5)) * self.stride[i] # xy
wh = (y[..., 2:4] * 2) ** 2 * self.anchor_grid[i] # wh
y = torch.cat((xy, wh, y[..., 4:]), 4)
xy, wh, conf = y.split((2, 2, self.nc + 1), 4) # y.tensor_split((2, 4, 5), 4) # torch 1.8.0
xy = (xy * 2 + (self.grid[i] - 0.5)) * 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 044825d

Please sign in to comment.