Ahsen Khaliq commited on
Commit
372ceb3
1 Parent(s): 494727f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -41,8 +41,9 @@ inputs = gr.inputs.Audio(label="Input Audio", type="file")
41
  outputs = gr.outputs.Textbox(label="Output Text")
42
 
43
  title = "wav2vec 2.0"
44
- 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."
45
- 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>"
 
46
 
47
 
48
  gr.Interface(inference, inputs, outputs, title=title, description=description, article=article).launch()
 
41
  outputs = gr.outputs.Textbox(label="Output Text")
42
 
43
  title = "wav2vec 2.0"
44
+ description = "Gradio demo for Real-time ASR with ESPnet2. To use it, simply upload your audio, or click one of the examples to load them. Read more at the links below."
45
+ article = "<p style='text-align: center'><a href='https://espnet.github.io/espnet/'>ESPnet: end-to-end speech processing toolkit
46
+ </a> | <a href='https://github.com/espnet/espnet'>Github Repo</a></p>"
47
 
48
 
49
  gr.Interface(inference, inputs, outputs, title=title, description=description, article=article).launch()