Skip to content

Commit

Permalink
Fix datasets for aws and get_coco.sh (ultralytics#3788)
Browse files Browse the repository at this point in the history
* merge master

* Update get_coco.sh
  • Loading branch information
glenn-jocher authored Jun 26, 2021
1 parent b710336 commit 955bc11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions data/scripts/get_coco.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
# /yolov5

# Download/unzip labels
d='../' # unzip directory
d='../datasets' # unzip directory
url=https://github.com/ultralytics/yolov5/releases/download/v1.0/
f='coco2017labels.zip' # or 'coco2017labels-segments.zip', 68 MB
echo 'Downloading' $url$f ' ...'
curl -L $url$f -o $f && unzip -q $f -d $d && rm $f & # download, unzip, remove in background

# Download/unzip images
d='../coco/images' # unzip directory
d='../datasets/coco/images' # unzip directory
url=http://images.cocodataset.org/zips/
f1='train2017.zip' # 19G, 118k images
f2='val2017.zip' # 1G, 5k images
Expand Down
1 change: 0 additions & 1 deletion utils/aws/userdata.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ if [ ! -d yolov5 ]; then
git clone https://github.com/ultralytics/yolov5 -b master && sudo chmod -R 777 yolov5
cd yolov5
bash data/scripts/get_coco.sh && echo "COCO done." &
bash data/scripts/get_voc.sh && echo "VOC done." &
sudo docker pull ultralytics/yolov5:latest && echo "Docker done." &
python -m pip install --upgrade pip && pip install -r requirements.txt && python detect.py && echo "Requirements done." &
wait && echo "All tasks done." # finish background tasks
Expand Down

0 comments on commit 955bc11

Please sign in to comment.