Spaces:
Runtime error
Runtime error
Ahsen Khaliq
commited on
Commit
•
d8b535d
1
Parent(s):
aba08c5
Update app.py
Browse files
app.py
CHANGED
@@ -28,9 +28,9 @@ def inference(audio):
|
|
28 |
inputs = gr.inputs.Audio(label="Input Audio", type="file")
|
29 |
outputs = gr.outputs.Textbox(label="Output Text")
|
30 |
|
31 |
-
title = "wav2vec 2.0"
|
32 |
-
description = "demo for
|
33 |
-
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/
|
34 |
|
35 |
|
36 |
gr.Interface(inference, inputs, outputs, title=title, description=description, article=article).launch()
|
|
|
28 |
inputs = gr.inputs.Audio(label="Input Audio", type="file")
|
29 |
outputs = gr.outputs.Textbox(label="Output Text")
|
30 |
|
31 |
+
title = "Robust wav2vec 2.0"
|
32 |
+
description = "Gradio demo for Robust wav2vec 2.0. To use it, simply upload your audio, or click one of the examples to load them. Read more at the links below."
|
33 |
+
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2104.01027'>Robust wav2vec 2.0: Analyzing Domain Shift in Self-Supervised Pre-Training</a> | <a href='https://github.com/pytorch/fairseq'>Github Repo</a></p>"
|
34 |
|
35 |
|
36 |
gr.Interface(inference, inputs, outputs, title=title, description=description, article=article).launch()
|