Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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()
|