Browse Source

*.torchscript inference `self.jit` fix (#6007)

modifyDataloader
Glenn Jocher GitHub 2 years ago
parent
commit
c1249a47c7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      models/common.py

+ 1
- 1
models/common.py View File

@@ -379,7 +379,7 @@ class DetectMultiBackend(nn.Module):
def forward(self, im, augment=False, visualize=False, val=False):
# YOLOv5 MultiBackend inference
b, ch, h, w = im.shape # batch, channel, height, width
if self.pt: # PyTorch
if self.pt or self.jit: # PyTorch
y = self.model(im) if self.jit else self.model(im, augment=augment, visualize=visualize)
return y if val else y[0]
elif self.coreml: # CoreML

Loading…
Cancel
Save