CsanadT commited on
Commit
a062548
1 Parent(s): ba60c22

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -25,15 +25,15 @@ url_demo = gr.Interface(
25
  inputs = "text",
26
  outputs = "text",
27
  title = "Swedish Whisper",
28
- description = "Fine-tuned Whisper model for swedish audio transcription",
29
  )
30
 
31
  voice_demo = gr.Interface(
32
  fn=transcribe_live,
33
  inputs=gr.Audio(source="microphone", type="filepath"),
34
  outputs="text",
35
- title="Whisper Swedish",
36
- description="Fine-tuned Whisper model for swedish audio transcription",
37
  )
38
 
39
  file_demo = gr.Interface(
@@ -41,7 +41,7 @@ file_demo = gr.Interface(
41
  inputs=gr.Audio(file_count="single"),
42
  outputs="text",
43
  title="Swedish Whisper",
44
- description="Fine-tuned Whisper model for swedish audio transcription",
45
  )
46
  demo = gr.TabbedInterface([url_demo, voice_demo, file_demo], ["YouTube video transciption", "Live audio to Text", "Transcribe a file"])
47
 
 
25
  inputs = "text",
26
  outputs = "text",
27
  title = "Swedish Whisper",
28
+ description = "Transciption of a swedish YouTube video via a fine-tuned Whisper model",
29
  )
30
 
31
  voice_demo = gr.Interface(
32
  fn=transcribe_live,
33
  inputs=gr.Audio(source="microphone", type="filepath"),
34
  outputs="text",
35
+ title="Swedish Whisper",
36
+ description="Live transcription of swedish speech via a fine-tuned Whisper model",
37
  )
38
 
39
  file_demo = gr.Interface(
 
41
  inputs=gr.Audio(file_count="single"),
42
  outputs="text",
43
  title="Swedish Whisper",
44
+ description="Transciption of a swedish audio file via a fine-tuned Whisper model",
45
  )
46
  demo = gr.TabbedInterface([url_demo, voice_demo, file_demo], ["YouTube video transciption", "Live audio to Text", "Transcribe a file"])
47