Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -14,7 +14,7 @@ random_wt = random.choice(wts)
|
|
| 14 |
|
| 15 |
# Load trained model weights from Hugging Face Hub
|
| 16 |
weights_path = hf_hub_download(
|
| 17 |
-
repo_id="keysun89/
|
| 18 |
filename=random_wt
|
| 19 |
)
|
| 20 |
|
|
@@ -40,7 +40,7 @@ model.eval()
|
|
| 40 |
|
| 41 |
wt_2 = 'genrator.pth'
|
| 42 |
srgan_weights = hf_hub_download(
|
| 43 |
-
repo_id="keysun89/
|
| 44 |
filename=wt_2
|
| 45 |
)
|
| 46 |
|
|
|
|
| 14 |
|
| 15 |
# Load trained model weights from Hugging Face Hub
|
| 16 |
weights_path = hf_hub_download(
|
| 17 |
+
repo_id="keysun89/image_generation", # Fixed repo name
|
| 18 |
filename=random_wt
|
| 19 |
)
|
| 20 |
|
|
|
|
| 40 |
|
| 41 |
wt_2 = 'genrator.pth'
|
| 42 |
srgan_weights = hf_hub_download(
|
| 43 |
+
repo_id="keysun89/image_generation", # Fixed repo name
|
| 44 |
filename=wt_2
|
| 45 |
)
|
| 46 |
|