gigant commited on
Commit
d59256b
·
verified ·
1 Parent(s): 7151d9a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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(hf_hub_url("huggan/distill-ccld-wa", filename="model_student.ckpt"))
33
- ae_model_path = hf_hub_download(hf_hub_url("huggan/ccld_wa", filename="ae_model.ckpt"))
34
- ae_config_path = hf_hub_download(hf_hub_url("huggan/ccld_wa", filename="ae_model.yaml"))
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