Skip to content

Commit

Permalink
Created using Colaboratory
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Dec 27, 2020
1 parent 14b0abe commit b096221
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1151,10 +1151,11 @@
"id": "mcKoSIK2WSzj"
},
"source": [
"# Test all\n",
"# Reproduce results\n",
"%%shell\n",
"for x in s m l x; do\n",
" python test.py --weights yolov5$x.pt --data coco.yaml --img 640\n",
"for x in yolov5s yolov5m yolov5l yolov5x; do\n",
" python test.py --data coco.yaml --img 640 --conf 0.25 --iou 0.45 # speed\n",
" python test.py --data coco.yaml --img 640 --conf 0.001 --iou 0.65 # mAP\n",
"done"
],
"execution_count": null,
Expand Down Expand Up @@ -1218,4 +1219,4 @@
"outputs": []
}
]
}
}

0 comments on commit b096221

Please sign in to comment.