sb-x commited on
Commit
316d3f7
·
verified ·
1 Parent(s): 7dde6ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -42,9 +42,9 @@ def transcribe(audio):
42
  demo = gr.Interface(
43
  fn=transcribe,
44
  inputs=gr.Audio(type="numpy"),
45
- outputs=gr.Textbox(label="Transcription"),
46
- title="MMS ASR Demo",
47
- description="Fine-tuned MMS ASR model (CC BY-NC 4.0)"
48
  )
49
 
50
  demo.launch()
 
42
  demo = gr.Interface(
43
  fn=transcribe,
44
  inputs=gr.Audio(type="numpy"),
45
+ outputs=gr.Textbox(label="Transcription",lines=10),
46
+ title="MMS-1b-bbl ASR Demo",
47
+ description="Fine-tuned MMS ASR model on bbl data from mozilla (CC BY-NC 4.0)"
48
  )
49
 
50
  demo.launch()