fmcurti commited on
Commit
524e96e
1 Parent(s): 4455347

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -34,7 +34,7 @@ def synthesise(text):
34
  with torch.no_grad():
35
  outputs = spanish_model(input_ids)
36
  speech = outputs.waveform
37
- return speech.cpu()
38
 
39
 
40
 
 
34
  with torch.no_grad():
35
  outputs = spanish_model(input_ids)
36
  speech = outputs.waveform
37
+ return speech.cpu()[0]
38
 
39
 
40