Spaces:
Runtime error
Runtime error
Ahsen Khaliq
commited on
Commit
•
c133ada
1
Parent(s):
df01263
Update app.py
Browse files
app.py
CHANGED
@@ -12,10 +12,10 @@ inputs = gr.inputs.Audio(type="file", label="Input Audio")
|
|
12 |
outputs = gr.outputs.Audio(type="file",label="Output Audio")
|
13 |
|
14 |
|
15 |
-
title = "
|
16 |
-
description = "demo for
|
17 |
-
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/
|
18 |
|
|
|
19 |
|
20 |
-
|
21 |
-
gr.Interface(inference, inputs, outputs, title=title, description=description, article=article).launch()
|
|
|
12 |
outputs = gr.outputs.Audio(type="file",label="Output Audio")
|
13 |
|
14 |
|
15 |
+
title = "Voice Fixer"
|
16 |
+
description = "Gradio demo for VoiceFixer: Toward General Speech Restoration With Neural Vocoder. To use it, simply add your audio, or click one of the examples to load them. Read more at the links below."
|
17 |
+
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2109.13731' target='_blank'>VoiceFixer: Toward General Speech Restoration With Neural Vocoder</a> | <a href='https://github.com/haoheliu/voicefixer_main' target='_blank'>Github Repo</a></p>"
|
18 |
|
19 |
+
examples=[['bruce.wav']]
|
20 |
|
21 |
+
gr.Interface(inference, inputs, outputs, title=title, description=description, article=article, examples=examples).launch()
|
|