Shubham09 commited on
Commit
eff408a
·
1 Parent(s): 04968cf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -52,8 +52,8 @@ def asr_transcript(input_file):
52
  gr.Interface(asr_transcript,
53
  inputs = gr.inputs.Audio(source="microphone", type="filepath", optional=True, label="Speaker"),
54
  outputs = gr.outputs.Textbox(label="Output Text"),
55
- title="ASR using Wav2Vec 2.0",
56
  description = "This application displays transcribed text for given audio input",
57
- examples = [["Actuator.wav"], ["anomalies.wav"]], theme="grass").launch(share=True)
58
 
59
 
 
52
  gr.Interface(asr_transcript,
53
  inputs = gr.inputs.Audio(source="microphone", type="filepath", optional=True, label="Speaker"),
54
  outputs = gr.outputs.Textbox(label="Output Text"),
55
+ title="ASR using Whisper",
56
  description = "This application displays transcribed text for given audio input",
57
+ examples = [["Actuator.wav"], ["anomalies.wav"]], theme="grass").launch()
58
 
59