GetmanY1 commited on
Commit
ca8157c
·
1 Parent(s): ba6537d

Update description

Browse files
Files changed (1) hide show
  1. app.py +4 -3
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__":