afroanton Davidkryckan commited on
Commit
a72eede
1 Parent(s): 506893a

Update app.py (#1)

Browse files

- Update app.py (c98053730786660de2055e05fa8c0ed9ae1222b8)


Co-authored-by: Franz David Krüger <Davidkryckan@users.noreply.huggingface.co>

Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -23,14 +23,17 @@ url_demo = gr.Interface(
23
  fn=transcribeUrl,
24
  examples=url_examples,
25
  inputs="text",
26
- outputs="text")
 
 
 
27
 
28
  voice_demo = gr.Interface(
29
  fn=transcribe,
30
  inputs=gr.Audio(source="microphone", type="filepath"),
31
  outputs="text",
32
  title="Whisper Small Swedish",
33
- description="Realtime demo for Swedish speech recognition using a fine-tuned Whisper small model.",
34
  )
35
 
36
  demo = gr.TabbedInterface([url_demo, voice_demo], ["video-to-text", "voice-to-text"])
23
  fn=transcribeUrl,
24
  examples=url_examples,
25
  inputs="text",
26
+ outputs="text",
27
+ title="Whisper Small Swedish",
28
+ description="Swedish speech and audio recognition using a fine-tuned Whipser small model",
29
+ )
30
 
31
  voice_demo = gr.Interface(
32
  fn=transcribe,
33
  inputs=gr.Audio(source="microphone", type="filepath"),
34
  outputs="text",
35
  title="Whisper Small Swedish",
36
+ description="Swedish speech and audio recognition using a fine-tuned Whipser small model",
37
  )
38
 
39
  demo = gr.TabbedInterface([url_demo, voice_demo], ["video-to-text", "voice-to-text"])