Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -29,9 +29,9 @@ from huggingface_hub import hf_hub_url, hf_hub_download
|
|
| 29 |
import random
|
| 30 |
|
| 31 |
# Download the model files
|
| 32 |
-
checkpoint = hf_hub_download(
|
| 33 |
-
ae_model_path = hf_hub_download(
|
| 34 |
-
ae_config_path = hf_hub_download(
|
| 35 |
|
| 36 |
# Define a few utility functions
|
| 37 |
|
|
|
|
| 29 |
import random
|
| 30 |
|
| 31 |
# Download the model files
|
| 32 |
+
checkpoint = hf_hub_download("huggan/distill-ccld-wa", filename="model_student.ckpt")
|
| 33 |
+
ae_model_path = hf_hub_download("huggan/ccld_wa", filename="ae_model.ckpt")
|
| 34 |
+
ae_config_path = hf_hub_download("huggan/ccld_wa", filename="ae_model.yaml")
|
| 35 |
|
| 36 |
# Define a few utility functions
|
| 37 |
|