Spaces:
Build error
Build error
Ahsen Khaliq commited on
Commit ·
242d1da
1
Parent(s): 2dce6a7
Update app.py
Browse files
app.py
CHANGED
|
@@ -37,7 +37,9 @@ def inference(text):
|
|
| 37 |
return "out.wav"
|
| 38 |
title = "ESPnet2-TTS"
|
| 39 |
description = "Gradio demo for ESPnet2-TTS: Extending the Edge of TTS Research. To use it, simply add your audio, or click one of the examples to load them. Read more at the links below."
|
| 40 |
-
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2110.07840' target='_blank'>ESPnet2-TTS: Extending the Edge of TTS Research</a> | <a href='https://github.com/espnet/espnet'>Github Repo</a></p>"
|
|
|
|
|
|
|
| 41 |
|
| 42 |
gr.Interface(
|
| 43 |
inference,
|
|
@@ -46,5 +48,6 @@ gr.Interface(
|
|
| 46 |
title=title,
|
| 47 |
description=description,
|
| 48 |
article=article,
|
| 49 |
-
enable_queue=True
|
|
|
|
| 50 |
).launch(debug=True)
|
|
|
|
| 37 |
return "out.wav"
|
| 38 |
title = "ESPnet2-TTS"
|
| 39 |
description = "Gradio demo for ESPnet2-TTS: Extending the Edge of TTS Research. To use it, simply add your audio, or click one of the examples to load them. Read more at the links below."
|
| 40 |
+
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2110.07840' target='_blank'>ESPnet2-TTS: Extending the Edge of TTS Research</a> | <a href='https://github.com/espnet/espnet' target='_blank'>Github Repo</a></p>"
|
| 41 |
+
|
| 42 |
+
examples=[['This paper describes ESPnet2-TTS, an end-to-end text-to-speech (E2E-TTS) toolkit. ESPnet2-TTS extends our earlier version, ESPnet-TTS, by adding many new features, including: on-the-fly flexible pre-processing, joint training with neural vocoders, and state-of-the-art TTS models with extensions like full-band E2E text-to-waveform modeling, which simplify the training pipeline and further enhance TTS performance. The unified design of our recipes enables users to quickly reproduce state-of-the-art E2E-TTS results']]
|
| 43 |
|
| 44 |
gr.Interface(
|
| 45 |
inference,
|
|
|
|
| 48 |
title=title,
|
| 49 |
description=description,
|
| 50 |
article=article,
|
| 51 |
+
enable_queue=True,
|
| 52 |
+
examples=examples
|
| 53 |
).launch(debug=True)
|