Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
# Load the model from Hugging Face and hide the tagline using CSS
|
4 |
+
demo = gr.Interface.load(
|
5 |
+
"models/speechbrain/mtl-mimic-voicebank",
|
6 |
+
css=".footer {display: none !important;}"
|
7 |
+
)
|
8 |
+
|
9 |
+
# Launch the interface
|
10 |
+
demo.launch()
|