mrolando commited on
Commit
f651720
1 Parent(s): c27c794

fixed space

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -12,7 +12,8 @@ else:
12
  device = "cpu"
13
  torch_dtype = torch.float32
14
  print(device)
15
- repo_id = "audioldm-s-full-v2"
 
16
  pipe = AudioLDMPipeline.from_pretrained(repo_id, torch_dtype=torch_dtype)
17
  pipe = pipe.to(device)
18
 
 
12
  device = "cpu"
13
  torch_dtype = torch.float32
14
  print(device)
15
+ repo_id = "cvssp/audioldm-s-full-v2"
16
+
17
  pipe = AudioLDMPipeline.from_pretrained(repo_id, torch_dtype=torch_dtype)
18
  pipe = pipe.to(device)
19