scripts/README.md

This commit is contained in:
AlexeyAB 2019-03-03 15:09:41 +03:00
parent 42b8c0751e
commit d5cb0b490c
2 changed files with 18 additions and 1 deletions

View File

@ -1,6 +1,6 @@
Datasets:
### Datasets:
Pascal VOC: http://host.robots.ox.ac.uk/pascal/VOC/voc2012/index.html

View File

@ -0,0 +1,17 @@
#!/bin/bash
wget http://www.image-net.org/challenges/LSVRC/2012/nnoupb/ILSVRC2012_img_train.tar
mkdir -p ILSVRC2012_img_train
tar --force-local -xf ILSVRC2012_img_train.tar -C ILSVRC2012_img_train
wd=`pwd`
for f in ILSVRC2012_img_train/*.tar;
do
name=$(echo "$f" | cut -f 1 -d '.')
mkdir "${wd}/${name}"
tar --force-local -xf "${wd}/${f}" -C "${wd}/${name}"
done
find "${wd}/ILSVRC2012_img_train" -name \*.JPEG > imagenet1k.train.list