Spaces:
Running
Running
Fabrice-TIERCELIN
commited on
Commit
•
0ebc0a3
1
Parent(s):
05f1747
This Pull Request fixes the space by using a reacheable model
Browse filesThis space is down because you are not allowed to use `stabilityai/stable-audio-open-1.0`. `chaowenguo/stable-audio-open-1.0` is the same model but is public.
Click on _Merge_ to add this feature.
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)
|