Update app.py
Browse files
app.py
CHANGED
|
@@ -6,10 +6,10 @@ with gr.Blocks(fill_height=True) as demo:
|
|
| 6 |
gr.Markdown("# Inference Provider")
|
| 7 |
gr.Markdown(
|
| 8 |
"This Space showcases the speechbrain/sepformer-wham16k-enhancement model, "
|
| 9 |
-
"served by the
|
| 10 |
)
|
| 11 |
-
|
| 12 |
with gr.Column(scale=3):
|
| 13 |
-
gr.load("
|
| 14 |
|
| 15 |
demo.launch()
|
|
|
|
| 6 |
gr.Markdown("# Inference Provider")
|
| 7 |
gr.Markdown(
|
| 8 |
"This Space showcases the speechbrain/sepformer-wham16k-enhancement model, "
|
| 9 |
+
"served by the Hugging Face inference API. Sign in with your Hugging Face account to use this API."
|
| 10 |
)
|
| 11 |
+
gr.Button("Sign in")
|
| 12 |
with gr.Column(scale=3):
|
| 13 |
+
gr.load("huggingface/speechbrain/sepformer-wham16k-enhancement")
|
| 14 |
|
| 15 |
demo.launch()
|