Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -25,15 +25,15 @@ url_demo = gr.Interface(
|
|
25 |
inputs = "text",
|
26 |
outputs = "text",
|
27 |
title = "Swedish Whisper",
|
28 |
-
description = "
|
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
|
36 |
-
description="
|
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="
|
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 |
|