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