This commit is contained in:
Glenn Jocher 2019-02-11 18:17:38 +01:00
parent e23b1a3d73
commit 742908257a
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ def detect(
img = torch.from_numpy(img).unsqueeze(0).to(device)
if ONNX_EXPORT:
torch.onnx.export(model, img, 'weights/model.onnx', verbose=True)
return # ONNX export
return
pred = model(img)
pred = pred[pred[:, :, 4] > conf_thres] # remove boxes < threshold