Explorar el Código

update check_img_size() for model strides

5.0
Glenn Jocher hace 4 años
padre
commit
a9dc0c2c29
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. +1
    -1
      detect.py
  2. +1
    -1
      test.py

+ 1
- 1
detect.py Ver fichero

@@ -25,6 +25,7 @@ def detect(save_img=False):
# torch.save(torch.load(weights, map_location=device), weights) # update model if SourceChangeWarning
# model.fuse()
model.to(device).eval()
imgsz = check_img_size(imgsz, s=model.model[-1].stride.max()) # check img_size
if half:
model.half() # to FP16

@@ -152,7 +153,6 @@ if __name__ == '__main__':
parser.add_argument('--agnostic-nms', action='store_true', help='class-agnostic NMS')
parser.add_argument('--augment', action='store_true', help='augmented inference')
opt = parser.parse_args()
opt.img_size = check_img_size(opt.img_size)
print(opt)

with torch.no_grad():

+ 1
- 1
test.py Ver fichero

@@ -34,6 +34,7 @@ def test(data,
torch_utils.model_info(model)
model.fuse()
model.to(device)
imgsz = check_img_size(imgsz, s=model.model[-1].stride.max()) # check img_size

# Multi-GPU disabled, incompatible with .half() https://github.com/ultralytics/yolov5/issues/99
# if device.type != 'cpu' and torch.cuda.device_count() > 1:
@@ -242,7 +243,6 @@ if __name__ == '__main__':
parser.add_argument('--merge', action='store_true', help='use Merge NMS')
parser.add_argument('--verbose', action='store_true', help='report mAP by class')
opt = parser.parse_args()
opt.img_size = check_img_size(opt.img_size)
opt.save_json = opt.save_json or opt.data.endswith('coco.yaml')
opt.data = check_file(opt.data) # check file
print(opt)

Cargando…
Cancelar
Guardar