vadhri commited on
Commit
b34dbe4
·
verified ·
1 Parent(s): 783e3c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -36,7 +36,7 @@ def synthesise(text):
36
  inputs = tokenizer(text, return_tensors="pt")
37
 
38
  with torch.no_grad():
39
- speech = model(**inputs).waveform
40
 
41
  return speech.cpu()
42
 
 
36
  inputs = tokenizer(text, return_tensors="pt")
37
 
38
  with torch.no_grad():
39
+ speech = model(**inputs)
40
 
41
  return speech.cpu()
42