Spaces:
Running
Running
Commit
•
fd38f82
1
Parent(s):
05f1747
This Pull Request fixes the space by using a reacheable model (#1)
Browse files- This Pull Request fixes the space by using a reacheable model (0ebc0a385435213a3a843733357f77a49b1ca560)
Co-authored-by: Fabrice TIERCELIN <Fabrice-TIERCELIN@users.noreply.huggingface.co>
app.py
CHANGED
@@ -20,7 +20,7 @@ from inversion_utils import inversion_forward_process, inversion_reverse_process
|
|
20 |
LDM2 = "cvssp/audioldm2"
|
21 |
MUSIC = "cvssp/audioldm2-music"
|
22 |
LDM2_LARGE = "cvssp/audioldm2-large"
|
23 |
-
STABLEAUD = "
|
24 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
25 |
ldm2 = load_model(model_id=LDM2, device=device)
|
26 |
ldm2_large = load_model(model_id=LDM2_LARGE, device=device)
|
|
|
20 |
LDM2 = "cvssp/audioldm2"
|
21 |
MUSIC = "cvssp/audioldm2-music"
|
22 |
LDM2_LARGE = "cvssp/audioldm2-large"
|
23 |
+
STABLEAUD = "chaowenguo/stable-audio-open-1.0"
|
24 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
25 |
ldm2 = load_model(model_id=LDM2, device=device)
|
26 |
ldm2_large = load_model(model_id=LDM2_LARGE, device=device)
|