Ahsen Khaliq commited on
Commit
d8b535d
1 Parent(s): aba08c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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 Facebook AI wav2vec 2.0 using Hugging Face transformers. 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/2006.11477'>wav2vec 2.0: A Framework for Self-Supervised Learning of Speech Representations</a> | <a href='https://github.com/pytorch/fairseq'>Github Repo</a> | <a href='https://huggingface.co/facebook/wav2vec2-base-960h'>Hugging Face model</a></p>"
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()