|
@@ -22,6 +22,17 @@ Results saved to runs/detect/predict3
|
|
|
|
|
|
```shell
|
|
|
yolo export model=yolov8n-cls.pt format=onnx imgsz=224,128
|
|
|
+yolo export model=water_strean_model.pt format=onnx \
|
|
|
+--iou-thres 0.65 --conf-thres 0.25 --topk 100 --opset 16 \
|
|
|
+--sim --input-shape 1 3 640 640
|
|
|
+
|
|
|
+python export-det.py --weights water_strean_model.pt \
|
|
|
+--iou-thres 0.65 --conf-thres 0.25 \
|
|
|
+--topk 100 --opset 16 --sim --input-shape 1 3 640 640 --device "0"
|
|
|
+
|
|
|
+python export-det.py --weights water_strean_model.pt \
|
|
|
+--iou-thres 0.65 --conf-thres 0.25 \
|
|
|
+--topk 100 --opset 16 --sim --input-shape 1 3 640 640 --device cpu
|
|
|
```
|
|
|
|
|
|
**注意:**
|