mirror of https://github.com/AlexeyAB/darknet.git
parent
bd9989d29a
commit
4d9a2bdac6
5 changed files with 37 additions and 2 deletions
@ -0,0 +1,31 @@ |
|||||||
|
#!/bin/bash |
||||||
|
|
||||||
|
# Clone COCO API |
||||||
|
git clone https://github.com/pdollar/coco |
||||||
|
cd coco |
||||||
|
|
||||||
|
mkdir images |
||||||
|
cd images |
||||||
|
|
||||||
|
# Download Images |
||||||
|
wget -c https://pjreddie.com/media/files/train2014.zip |
||||||
|
wget -c https://pjreddie.com/media/files/val2014.zip |
||||||
|
|
||||||
|
# Unzip |
||||||
|
unzip -q train2014.zip |
||||||
|
unzip -q val2014.zip |
||||||
|
|
||||||
|
cd .. |
||||||
|
|
||||||
|
# Download COCO Metadata |
||||||
|
wget -c https://pjreddie.com/media/files/instances_train-val2014.zip |
||||||
|
wget -c https://pjreddie.com/media/files/coco/5k.part |
||||||
|
wget -c https://pjreddie.com/media/files/coco/trainvalno5k.part |
||||||
|
wget -c https://pjreddie.com/media/files/coco/labels.tgz |
||||||
|
tar xzf labels.tgz |
||||||
|
unzip -q instances_train-val2014.zip |
||||||
|
|
||||||
|
# Set Up Image Lists |
||||||
|
paste <(awk "{print \"$PWD\"}" <5k.part) 5k.part | tr -d '\t' > 5k.txt |
||||||
|
paste <(awk "{print \"$PWD\"}" <trainvalno5k.part) trainvalno5k.part | tr -d '\t' > trainvalno5k.txt |
||||||
|
|
Loading…
Reference in new issue