Fabrice-TIERCELIN commited on
Commit
3f54e05
·
verified ·
1 Parent(s): 9639ae1

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.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ from stable_audio_tools.inference.generation import generate_diffusion_cond
13
  # Load the model outside of the GPU-decorated function
14
  def load_model():
15
  print("Loading model...")
16
- model, model_config = get_pretrained_model("stabilityai/stable-audio-open-1.0")
17
  print("Model loaded successfully.")
18
  return model, model_config
19
 
 
13
  # Load the model outside of the GPU-decorated function
14
  def load_model():
15
  print("Loading model...")
16
+ model, model_config = get_pretrained_model("chaowenguo/stable-audio-open-1.0")
17
  print("Model loaded successfully.")
18
  return model, model_config
19