File size: 569 Bytes
ddcf417 02a97b8 f2950eb 75e46fd f2950eb 75e46fd f2950eb 75e46fd f2950eb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import gradio as gr
with gr.Blocks(fill_height=True) as demo:
with gr.Row():
with gr.Column(scale=1):
gr.Markdown("# Inference Provider")
gr.Markdown(
"This Space showcases the speechbrain/sepformer-wham16k-enhancement model, "
"served by the Hugging Face inference API. Sign in with your Hugging Face account to use this API."
)
gr.Button("Sign in")
with gr.Column(scale=3):
gr.load("huggingface/speechbrain/sepformer-wham16k-enhancement")
demo.launch()
|