ancztxi / app.py
Geek7's picture
Create app.py
f5c0f72 verified
raw
history blame
245 Bytes
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()