revert onnx runtime update (#18074)

* revert onnx runtime update

* Fix docs
This commit is contained in:
Nicolas Mowen
2025-05-06 08:02:34 -06:00
committed by GitHub
parent 511542eaf8
commit 3a69273f0c
3 changed files with 5 additions and 5 deletions

View File

@@ -1069,5 +1069,5 @@ wget -O yolov9-t.pt "https://github.com/WongKinYiu/yolov9/releases/download/v0.1
# prepare and run export script
sed -i "s/ckpt = torch.load(attempt_download(w), map_location='cpu')/ckpt = torch.load(attempt_download(w), map_location='cpu', weights_only=False)/g" ./models/experimental.py
python3 export.py --weights ./yolov9-t.pt --imgsz 320 --simplify --include onnx
bin/python3 export.py --weights ./yolov9-t.pt --imgsz 320 --simplify --include onnx
```