download MSCoco for training AlphaPose
This commit is contained in:
parent
bbb0518d29
commit
7ea2b73503
1 changed files with 12 additions and 0 deletions
12
downloadCOCO.sh
Executable file
12
downloadCOCO.sh
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
wget -nc --directory-prefix=data/coco http://images.cocodataset.org/zips/train2017.zip
|
||||
wget -nc --directory-prefix=data/coco http://images.cocodataset.org/zips/val2017.zip
|
||||
wget -nc --directory-prefix=data/coco http://images.cocodataset.org/annotations/annotations_trainval2017.zip
|
||||
|
||||
cd data/coco
|
||||
unzip -n annotations_trainval2017.zip
|
||||
unzip -n val2017.zip
|
||||
unzip -n train2017.zip
|
||||
|
||||
|
Loading…
Reference in a new issue