diffusionNAG/MobileNetV3/script/download_raw_dataset.sh

13 lines
274 B
Bash
Raw Permalink Normal View History

2024-03-15 15:38:51 +01:00
DATANAME=$1
if [[ $DATANAME = 'aircraft' ]]; then
echo '[Downloading aircraft]'
python main_exp/get_files/get_aircraft.py
elif [[ $DATANAME = 'pets' ]]; then
echo '[Downloading pets]'
python main_exp/get_files/get_pets.py
else
echo 'Not Implemeted'
fi