Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 342 Bytes

yolov7-export.md

File metadata and controls

10 lines (7 loc) · 342 Bytes

YOLOv7 Export Instructions

OnnxRuntime and/or Libtorch

Run from the YOLOv7 repository:

python export.py --weights <yolov7_version>.pt --grid --simplify --topk-all 100 --iou-thres 0.65 --conf-thres 0.35 --img-size 640 640 --max-wh 640

Note: Don't use the end-to-end parameter.