glenn-jocher commited on
Commit
d81bc47
·
1 Parent(s): a70e554

Creado con Colaboratory

Browse files
Files changed (1) hide show
  1. tutorial.ipynb +7 -6
tutorial.ipynb CHANGED
@@ -563,7 +563,7 @@
563
  "clear_output()\n",
564
  "print('Setup complete. Using torch %s %s' % (torch.__version__, torch.cuda.get_device_properties(0) if torch.cuda.is_available() else 'CPU'))"
565
  ],
566
- "execution_count": 1,
567
  "outputs": [
568
  {
569
  "output_type": "stream",
@@ -689,7 +689,7 @@
689
  "torch.hub.download_url_to_file('https://github.com/ultralytics/yolov5/releases/download/v1.0/coco2017val.zip', 'tmp.zip')\n",
690
  "!unzip -q tmp.zip -d ../ && rm tmp.zip"
691
  ],
692
- "execution_count": 2,
693
  "outputs": [
694
  {
695
  "output_type": "display_data",
@@ -729,7 +729,7 @@
729
  "# Run YOLOv5x on COCO val2017\n",
730
  "!python test.py --weights yolov5x.pt --data coco.yaml --img 640"
731
  ],
732
- "execution_count": 3,
733
  "outputs": [
734
  {
735
  "output_type": "stream",
@@ -852,7 +852,7 @@
852
  "torch.hub.download_url_to_file('https://github.com/ultralytics/yolov5/releases/download/v1.0/coco128.zip', 'tmp.zip')\n",
853
  "!unzip -q tmp.zip -d ../ && rm tmp.zip"
854
  ],
855
- "execution_count": 4,
856
  "outputs": [
857
  {
858
  "output_type": "display_data",
@@ -916,7 +916,7 @@
916
  "# Train YOLOv5s on COCO128 for 3 epochs\n",
917
  "!python train.py --img 640 --batch 16 --epochs 3 --data coco128.yaml --weights yolov5s.pt --nosave --cache"
918
  ],
919
- "execution_count": 5,
920
  "outputs": [
921
  {
922
  "output_type": "stream",
@@ -1160,9 +1160,10 @@
1160
  "%%shell\n",
1161
  "export PYTHONPATH=\"$PWD\" # to run *.py. files in subdirectories\n",
1162
  "\n",
 
1163
  "for m in yolov5s; do # models\n",
1164
  " python train.py --weights $m.pt --epochs 3 --img 320 --device 0 # train pretrained\n",
1165
- " python train.py --cfg $m.yaml --epochs 3 --img 320 --device 0 # train scratch\n",
1166
  " for d in 0 cpu; do # devices\n",
1167
  " python detect.py --weights $m.pt --device $d # detect official\n",
1168
  " python detect.py --weights runs/train/exp/weights/best.pt --device $d # detect custom\n",
 
563
  "clear_output()\n",
564
  "print('Setup complete. Using torch %s %s' % (torch.__version__, torch.cuda.get_device_properties(0) if torch.cuda.is_available() else 'CPU'))"
565
  ],
566
+ "execution_count": null,
567
  "outputs": [
568
  {
569
  "output_type": "stream",
 
689
  "torch.hub.download_url_to_file('https://github.com/ultralytics/yolov5/releases/download/v1.0/coco2017val.zip', 'tmp.zip')\n",
690
  "!unzip -q tmp.zip -d ../ && rm tmp.zip"
691
  ],
692
+ "execution_count": null,
693
  "outputs": [
694
  {
695
  "output_type": "display_data",
 
729
  "# Run YOLOv5x on COCO val2017\n",
730
  "!python test.py --weights yolov5x.pt --data coco.yaml --img 640"
731
  ],
732
+ "execution_count": null,
733
  "outputs": [
734
  {
735
  "output_type": "stream",
 
852
  "torch.hub.download_url_to_file('https://github.com/ultralytics/yolov5/releases/download/v1.0/coco128.zip', 'tmp.zip')\n",
853
  "!unzip -q tmp.zip -d ../ && rm tmp.zip"
854
  ],
855
+ "execution_count": null,
856
  "outputs": [
857
  {
858
  "output_type": "display_data",
 
916
  "# Train YOLOv5s on COCO128 for 3 epochs\n",
917
  "!python train.py --img 640 --batch 16 --epochs 3 --data coco128.yaml --weights yolov5s.pt --nosave --cache"
918
  ],
919
+ "execution_count": null,
920
  "outputs": [
921
  {
922
  "output_type": "stream",
 
1160
  "%%shell\n",
1161
  "export PYTHONPATH=\"$PWD\" # to run *.py. files in subdirectories\n",
1162
  "\n",
1163
+ "rm -rf runs # remove runs/\n",
1164
  "for m in yolov5s; do # models\n",
1165
  " python train.py --weights $m.pt --epochs 3 --img 320 --device 0 # train pretrained\n",
1166
+ " python train.py --weights '' --cfg $m.yaml --epochs 3 --img 320 --device 0 # train scratch\n",
1167
  " for d in 0 cpu; do # devices\n",
1168
  " python detect.py --weights $m.pt --device $d # detect official\n",
1169
  " python detect.py --weights runs/train/exp/weights/best.pt --device $d # detect custom\n",