aikitty commited on
Commit
a843b99
·
verified ·
1 Parent(s): dc7d091

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -27,8 +27,8 @@ def speech_to_text(audio):
27
  # Create the Gradio interface
28
  iface = gr.Interface(
29
  fn=speech_to_text,
30
- inputs=gr.inputs.Audio(source="upload", type="filepath"),
31
- outputs="text",
32
  title="Chinese Speech Recognition",
33
  description="Upload an audio file and get the transcribed text using the wav2vec2-large-xlsr-53-chinese-zh-cn model."
34
  )
 
27
  # Create the Gradio interface
28
  iface = gr.Interface(
29
  fn=speech_to_text,
30
+ inputs=gr.Audio(source="upload", type="filepath"),
31
+ outputs=gr.Textbox(),
32
  title="Chinese Speech Recognition",
33
  description="Upload an audio file and get the transcribed text using the wav2vec2-large-xlsr-53-chinese-zh-cn model."
34
  )