Update description
Browse files
app.py
CHANGED
@@ -24,9 +24,10 @@ pipe = pipeline(
|
|
24 |
)
|
25 |
|
26 |
gradio_app = gr.Interface(
|
27 |
-
transcribe,
|
28 |
-
gr.Audio(sources=["upload","microphone"]),
|
29 |
-
"text",
|
|
|
30 |
)
|
31 |
|
32 |
if __name__ == "__main__":
|
|
|
24 |
)
|
25 |
|
26 |
gradio_app = gr.Interface(
|
27 |
+
fn=transcribe,
|
28 |
+
inputs=gr.Audio(sources=["upload","microphone"]),
|
29 |
+
outputs="text",
|
30 |
+
title="Sámi Automatic Speech Recognition",
|
31 |
)
|
32 |
|
33 |
if __name__ == "__main__":
|