This commit is contained in:
Glenn Jocher 2019-06-15 13:34:02 +02:00
parent 995dc3ca67
commit 40da693ff0
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ def detect(
# Initialize model
if ONNX_EXPORT:
s = (320, 192) # onnx model image size (height, width)
s = (320, 192) # (320, 192) or (416, 256) onnx model image size (height, width)
model = Darknet(cfg, s)
else:
model = Darknet(cfg, img_size)