nata0801 commited on
Commit
7a8abcb
1 Parent(s): d22ca6b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -41,10 +41,10 @@ def asr_transcript(audio_file, language):
41
 
42
  gradio_ui = gr.Interface(
43
  fn=asr_transcript,
44
- title="Speech-to-Text with HuggingFace+Wav2Vec2",
45
  description="Upload an audio clip in Russian, English, or French and let AI do the hard work of transcribing",
46
  inputs = [gr.inputs.Audio(label="Upload Audio File", type="file"),
47
- gr.inputs.Radio(label="Pick an STT Model - (language)",
48
  choices=["English",
49
  "Russian",
50
  "French"])],
41
 
42
  gradio_ui = gr.Interface(
43
  fn=asr_transcript,
44
+ title="Automatic speech recognition with Wav2Vec2",
45
  description="Upload an audio clip in Russian, English, or French and let AI do the hard work of transcribing",
46
  inputs = [gr.inputs.Audio(label="Upload Audio File", type="file"),
47
+ gr.inputs.Radio(label="Pick a language",
48
  choices=["English",
49
  "Russian",
50
  "French"])],