Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
申瑞珉 (Ruimin Shen) committed May 12, 2018
1 parent 7a679cc commit ec65527
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions quick_start.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
echo download COCO dataset
LINKS="
http://images.cocodataset.org/zips/train2014.zip
http://images.cocodataset.org/zips/val2014.zip
http://images.cocodataset.org/annotations/annotations_trainval2014.zip
http://images.cocodataset.org/zips/train2017.zip
http://images.cocodataset.org/zips/val2017.zip
http://images.cocodataset.org/annotations/annotations_trainval2017.zip
"
ROOT=~/data/coco
for LINK in $LINKS
do
aria2c --auto-file-renaming=false -d $ROOT $LINK
unzip -n $ROOT/$(basename $LINK) -d $ROOT
done
rm $ROOT/val2014/COCO_val2014_000000320612.jpg

echo cache data
python3 cache.py -c config.ini config/original_person18_19.ini -m cache/name=cache_original

Expand Down

0 comments on commit ec65527

Please sign in to comment.