Geek7 commited on
Commit
f5c0f72
·
verified ·
1 Parent(s): 826b16b

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
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()