Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -41,9 +41,9 @@ We'll use face images from the CelebA dataset, resized to 64x64.
|
|
41 |
#Download labels from public github, they have been processed in a 0,1 csv file
|
42 |
|
43 |
os.makedirs("content/celeba_gan")
|
44 |
-
wget.download(url="https://github.com/buoi/conditional-face-GAN/blob/main/list_attr_celeba01.csv.zip?raw=true", out="
|
45 |
|
46 |
-
shutil.unpack_archive(filename="
|
47 |
|
48 |
"""## Dataset preprocessing functions"""
|
49 |
|
|
|
41 |
#Download labels from public github, they have been processed in a 0,1 csv file
|
42 |
|
43 |
os.makedirs("content/celeba_gan")
|
44 |
+
wget.download(url="https://github.com/buoi/conditional-face-GAN/blob/main/list_attr_celeba01.csv.zip?raw=true", out="content/celeba_gan/list_attr_celeba01.csv.zip")
|
45 |
|
46 |
+
shutil.unpack_archive(filename="content/celeba_gan/list_attr_celeba01.csv.zip", extract_dir="content/celeba_gan")
|
47 |
|
48 |
"""## Dataset preprocessing functions"""
|
49 |
|