Path: blob/main/scripts/download.sh
960 views
DATASET=$112if [ $DATASET = "faces" ]3then4source scripts/downloaders/download_kaggle_data.sh jessicali9530 celeba-dataset5elif [ $DATASET = "bricks" ]6then7source scripts/downloaders/download_kaggle_data.sh joosthazelzet lego-brick-images8elif [ $DATASET = "recipes" ]9then10source scripts/downloaders/download_kaggle_data.sh hugodarwood epirecipes11elif [ $DATASET = "flowers" ]12then13source scripts/downloaders/download_kaggle_data.sh nunenuh pytorch-challange-flower-dataset14elif [ $DATASET = "wines" ]15then16source scripts/downloaders/download_kaggle_data.sh zynicide wine-reviews17elif [ $DATASET = "cellosuites" ]18then19source scripts/downloaders/download_bach_cello_data.sh20elif [ $DATASET = "chorales" ]21then22source scripts/downloaders/download_bach_chorale_data.sh23else24echo "Invalid dataset name - please choose from: faces, bricks, recipes, flowers, wines, cellosuites, chorales"25fi262728293031