12 lines
285 B
Bash
12 lines
285 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
pip install -r requirements.txt
|
||
|
cd dataset
|
||
|
rm -rf ILSVRC2012
|
||
|
wget -nc https://paddle-imagenet-models-name.bj.bcebos.com/data/ImageNet1k/ILSVRC2012_val.tar
|
||
|
tar xf ILSVRC2012_val.tar
|
||
|
ln -s ILSVRC2012_val ILSVRC2012
|
||
|
cd ILSVRC2012
|
||
|
ln -s val_list.txt train_list.txt
|
||
|
cd ../../
|