mirror of https://github.com/WongKinYiu/yolov7.git
minor fix
parent
82f26becad
commit
703c2ff21a
|
@ -359,7 +359,7 @@
|
|||
"!python export.py --weights ./yolov7-tiny.pt \\\n",
|
||||
" --grid --end2end --simplify \\\n",
|
||||
" --topk-all 100 --iou-thres 0.65 --conf-thres 0.35 \\\n",
|
||||
" --max-wh 640 # For onnxruntime, you need to specify this value as an integer, when it is 0 it means agnostic NMS, \n",
|
||||
" --img-size 640 640 --max-wh 640 # For onnxruntime, you need to specify this value as an integer, when it is 0 it means agnostic NMS, \n",
|
||||
" # otherwise it is non-agnostic NMS"
|
||||
],
|
||||
"metadata": {
|
||||
|
|
|
@ -421,7 +421,7 @@
|
|||
"cell_type": "code",
|
||||
"source": [
|
||||
"# export temporary ONNX model for TensorRT converter\n",
|
||||
"!python export.py --weights ./yolov7-tiny.pt --grid --end2end --simplify --topk-all 100 --iou-thres 0.65 --conf-thres 0.35\n",
|
||||
"!python export.py --weights ./yolov7-tiny.pt --grid --end2end --simplify --topk-all 100 --iou-thres 0.65 --conf-thres 0.35 --img-size 640 640\n",
|
||||
"!ls"
|
||||
],
|
||||
"metadata": {
|
||||
|
|
Loading…
Reference in New Issue