preetam8 commited on
Commit
af4a9d1
·
1 Parent(s): 9e2a87c

add logging

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -29,6 +29,7 @@ def synthesise(text):
29
  with torch.no_grad():
30
  outputs = model(inputs["input_ids"])
31
  speech = outputs["waveform"]
 
32
  return speech.cpu()
33
 
34
 
 
29
  with torch.no_grad():
30
  outputs = model(inputs["input_ids"])
31
  speech = outputs["waveform"]
32
+ logging.info(speech)
33
  return speech.cpu()
34
 
35