From 3666a80677f9c176d8b0f010334f80afc940970f Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 6 May 2025 07:52:59 -0600 Subject: [PATCH] Fix docs --- docs/docs/configuration/object_detectors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/configuration/object_detectors.md b/docs/docs/configuration/object_detectors.md index 60c1e512d..ae497b41d 100644 --- a/docs/docs/configuration/object_detectors.md +++ b/docs/docs/configuration/object_detectors.md @@ -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 ```