瀏覽代碼

Check `'onnxruntime-gpu' if torch.has_cuda` (#5087)

* Check `'onnxruntime-gpu' if torch.has_cuda`

* fix indent
modifyDataloader
Glenn Jocher GitHub 3 年之前
父節點
當前提交
b754525e99
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      detect.py

+ 1
- 1
detect.py 查看文件

@@ -92,7 +92,7 @@ def run(weights=ROOT / 'yolov5s.pt', # model.pt path(s)
# check_requirements(('opencv-python>=4.5.4',))
net = cv2.dnn.readNetFromONNX(w)
else:
check_requirements(('onnx', 'onnxruntime'))
check_requirements(('onnx', 'onnxruntime-gpu' if torch.has_cuda else 'onnxruntime'))
import onnxruntime
session = onnxruntime.InferenceSession(w, None)
else: # TensorFlow models

Loading…
取消
儲存