Selaa lähdekoodia

Revert "Update detect.py non-inplace with `y.tensor_split()` (#7062)" (#7074)

This reverts commit d5e363f29d.
modifyDataloader
Glenn Jocher GitHub 2 vuotta sitten
vanhempi
commit
9b771a3e71
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 muutettua tiedostoa jossa 3 lisäystä ja 4 poistoa
  1. +3
    -4
      models/yolo.py

+ 3
- 4
models/yolo.py Näytä tiedosto

@@ -62,10 +62,9 @@ class Detect(nn.Module):
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, 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)
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)
z.append(y.view(bs, -1, self.no))

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

Loading…
Peruuta
Tallenna