From 55e48603bf917968a72e5aa65f832517d4f06e81 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Sat, 4 Jul 2020 16:25:48 -0700 Subject: [PATCH] udpate dataset download instructions --- data/get_coco2017.sh | 10 +++++++--- data/get_voc.sh | 8 ++++++++ 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/data/get_coco2017.sh b/data/get_coco2017.sh index fed5747..03b2c7e 100755 --- a/data/get_coco2017.sh +++ b/data/get_coco2017.sh @@ -1,7 +1,11 @@ #!/bin/bash -# Zip coco folder -# zip -r coco.zip coco -# tar -czvf coco.tar.gz coco +# COCO 2017 dataset http://cocodataset.org +# Download command: bash yolov5/data/get_coco2017.sh +# 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 filename="coco2017labels.zip" diff --git a/data/get_voc.sh b/data/get_voc.sh index f1ad410..61edbac 100644 --- a/data/get_voc.sh +++ b/data/get_voc.sh @@ -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` # handle optional download dir