add logging
Browse files
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 |
|