Created using Colaboratory

pull/6352/head
Glenn Jocher 2022-01-19 10:18:29 -10:00
parent 0cf932bf63
commit e5219099cd
1 changed files with 2 additions and 2 deletions

4
tutorial.ipynb vendored
View File

@ -1077,7 +1077,7 @@
},
"source": [
"# VOC\n",
"for b, m in zip([64, 48, 32, 16], ['yolov5s', 'yolov5m', 'yolov5l', 'yolov5x']): # zip(batch_size, model)\n",
"for b, m in zip([64, 64, 32, 16], ['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.finetune.yaml --project VOC --name {m}"
],
"execution_count": null,
@ -1099,4 +1099,4 @@
"outputs": []
}
]
}
}