Skip to content

Commit

Permalink
Add AFHQ v2 download link
Browse files Browse the repository at this point in the history
  • Loading branch information
yunjey committed Jul 1, 2021
1 parent 63b3c18 commit 6463af5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion download.sh
Expand Up @@ -47,8 +47,16 @@ elif [ $FILE == "afhq-dataset" ]; then
unzip $ZIP_FILE -d ./data
rm $ZIP_FILE

elif [ $FILE == "afhq-v2-dataset" ]; then
URL=https://www.dropbox.com/s/scckftx13grwmiv/afhq_v2.zip?dl=0
ZIP_FILE=./data/afhq_v2.zip
mkdir -p ./data
wget -N $URL -O $ZIP_FILE
unzip $ZIP_FILE -d ./data
rm $ZIP_FILE

else
echo "Available arguments are pretrained-network-celeba-hq, pretrained-network-afhq, celeba-hq-dataset, and afhq-dataset."
exit 1

fi
fi

0 comments on commit 6463af5

Please sign in to comment.