File size: 245 Bytes
f5c0f72
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr

# Load the model from Hugging Face and hide the tagline using CSS
demo = gr.Interface.load(
    "models/speechbrain/mtl-mimic-voicebank", 
    css=".footer {display: none !important;}"
)

# Launch the interface
demo.launch()