Spaces:
Running
Running
File size: 343 Bytes
13ad026 70d523b 13ad026 34f8278 13ad026 34f8278 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import gradio as gr
tts_examples = [
"I love learning machine learning",
"How do you do?",
]
tts_demo = gr.load(
"huggingface/facebook/fastspeech2-en-ljspeech",
title=None,
examples=tts_examples,
description="Give me something to say!",
)
demo = tts_demo
if __name__ == "__main__":
demo.launchs(show_api=False)
|