Ahsen Khaliq commited on
Commit
496a53a
1 Parent(s): f844e26

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -32,7 +32,7 @@ outputs = gr.outputs.Textbox(label="Output Text")
32
 
33
  title = "Robust wav2vec 2.0"
34
  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. Currently supports .wav and .flac files"
35
- 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>"
36
 
37
  examples=[['poem.wav']]
38
  gr.Interface(inference, inputs, outputs, title=title, description=description, article=article, examples=examples).launch()
32
 
33
  title = "Robust wav2vec 2.0"
34
  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. Currently supports .wav and .flac files"
35
+ article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2104.01027' target='_blank'>Robust wav2vec 2.0: Analyzing Domain Shift in Self-Supervised Pre-Training</a> | <a href='https://github.com/pytorch/fairseq' target='_blank'>Github Repo</a></p>"
36
 
37
  examples=[['poem.wav']]
38
  gr.Interface(inference, inputs, outputs, title=title, description=description, article=article, examples=examples).launch()