Fabrice-TIERCELIN commited on
Commit
a6557e0
·
verified ·
1 Parent(s): e3ea175

This Pull Request fix the space by using a reacheable model

Browse files

This 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.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ theme = gr.themes.Base(
16
 
17
 
18
  def load_model():
19
- model, model_config = get_pretrained_model("stabilityai/stable-audio-open-1.0")
20
  print("Loading model...Done")
21
  return model, model_config
22
 
 
16
 
17
 
18
  def load_model():
19
+ model, model_config = get_pretrained_model("chaowenguo/stable-audio-open-1.0")
20
  print("Loading model...Done")
21
  return model, model_config
22