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() |
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() |