Update tutorial.ipynb (#7212)

pull/7215/head
Glenn Jocher 2022-03-30 12:53:49 +02:00 committed by GitHub
parent cf4f3c3455
commit 9c1e91aea2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
tutorial.ipynb vendored
View File

@ -1077,7 +1077,7 @@
},
"source": [
"# VOC\n",
"for b, m in zip([64, 64, 32, 16], ['yolov5s', 'yolov5m', 'yolov5l', 'yolov5x']): # zip(batch_size, model)\n",
"for b, m in zip([64, 64, 64, 32, 16], ['yolov5n', 'yolov5s', 'yolov5m', 'yolov5l', 'yolov5x']): # zip(batch_size, model)\n",
" !python train.py --batch {b} --weights {m}.pt --data VOC.yaml --epochs 50 --cache --img 512 --nosave --hyp hyp.VOC.yaml --project VOC --name {m}"
],
"execution_count": null,