udpate dataset download instructions

This commit is contained in:
Glenn Jocher 2020-07-04 16:25:48 -07:00
parent 1bc0ef874a
commit 55e48603bf
2 changed files with 15 additions and 3 deletions

View File

@ -1,7 +1,11 @@
#!/bin/bash #!/bin/bash
# Zip coco folder # COCO 2017 dataset http://cocodataset.org
# zip -r coco.zip coco # Download command: bash yolov5/data/get_coco2017.sh
# tar -czvf coco.tar.gz coco # Train command: python train.py --data ./data/coco.yaml
# Dataset should be placed next to yolov5 folder:
# /parent_folder
# /coco
# /yolov5
# Download labels from Google Drive, accepting presented query # Download labels from Google Drive, accepting presented query
filename="coco2017labels.zip" filename="coco2017labels.zip"

View File

@ -1,3 +1,11 @@
# PASCAL VOC dataset http://host.robots.ox.ac.uk/pascal/VOC/
# Download command: bash yolov5/data/get_voc.sh
# Train command: python train.py --data voc.yaml
# Dataset should be placed next to yolov5 folder:
# /parent_folder
# /VOC
# /yolov5
start=`date +%s` start=`date +%s`
# handle optional download dir # handle optional download dir