You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi all, there appears to be an error in the cell downloading apple2orange dataset. I believe you left off the mkdir ./datasets in below. It runs as expected when added.
Hi all, there appears to be an error in the cell downloading apple2orange dataset. I believe you left off the
mkdir ./datasets
in below. It runs as expected when added.`#@title { form-width: "10%" }
%%bash
FILE=apple2orange
URL=https://people.eecs.berkeley.edu/~taesung_park/CycleGAN/datasets/$FILE.zip
mkdir ./datasets
ZIP_FILE=./datasets/$FILE.zip
TARGET_DIR=./datasets/$FILE/
wget -N $URL -O $ZIP_FILE
mkdir $TARGET_DIR
unzip $ZIP_FILE -d ./datasets/
rm $ZIP_FILE`
The text was updated successfully, but these errors were encountered: