Update app.py
Browse files
app.py
CHANGED
@@ -26,8 +26,5 @@ outputs = gr.Audio(label="Output Audio", type="filepath")
|
|
26 |
title = "Speech Enhancement using SGMSE"
|
27 |
description = "This Gradio demo uses the SGMSE model for speech enhancement. Upload your audio file to enhance it."
|
28 |
article = "<p style='text-align: center'><a href='https://huggingface.co/SP-UHH/speech-enhancement-sgmse' target='_blank'>Model Card</a></p>"
|
29 |
-
examples = [
|
30 |
-
['samples/your_example_audio.wav']
|
31 |
-
]
|
32 |
|
33 |
gr.Interface(fn=enhance_speech, inputs=inputs, outputs=outputs, title=title, description=description, article=article, examples=examples).launch()
|
|
|
26 |
title = "Speech Enhancement using SGMSE"
|
27 |
description = "This Gradio demo uses the SGMSE model for speech enhancement. Upload your audio file to enhance it."
|
28 |
article = "<p style='text-align: center'><a href='https://huggingface.co/SP-UHH/speech-enhancement-sgmse' target='_blank'>Model Card</a></p>"
|
|
|
|
|
|
|
29 |
|
30 |
gr.Interface(fn=enhance_speech, inputs=inputs, outputs=outputs, title=title, description=description, article=article, examples=examples).launch()
|