Gameel commited on
Commit
a8b5a82
1 Parent(s): 74c1130

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ gr.Interface.load("huggingface/facebook/fastspeech2-en-ljspeech",
3
+ description="TTS using FastSpeech2",
4
+ title="Text to Speech (TTS)",
5
+ examples=[["The quick brown fox jumps over the lazy dog."]]
6
+ ).launch()