Spaces:
Sleeping
Sleeping
kavyamanohar
commited on
Commit
•
fc35731
1
Parent(s):
53c407a
Update app.py
Browse files
app.py
CHANGED
@@ -2,11 +2,12 @@ import gradio as gr
|
|
2 |
MODEL_NAME = "leenag/Mal_ASR_Whisper_small_imasc_1000"
|
3 |
|
4 |
demo = gr.load(name = MODEL_NAME,
|
5 |
-
examples = [["./
|
6 |
],
|
7 |
title = "VRCLC Malayalam Speech Recognition Demo",
|
8 |
-
description=("Transcribe microphone or audio inputs with the click of a button!
|
9 |
-
|
|
|
10 |
),
|
11 |
)
|
12 |
|
|
|
2 |
MODEL_NAME = "leenag/Mal_ASR_Whisper_small_imasc_1000"
|
3 |
|
4 |
demo = gr.load(name = MODEL_NAME,
|
5 |
+
examples = [["./example.wav", "transcribe", False],
|
6 |
],
|
7 |
title = "VRCLC Malayalam Speech Recognition Demo",
|
8 |
+
description=("Transcribe long-form microphone or audio inputs with the click of a button! Demo uses the"
|
9 |
+
f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"
|
10 |
+
" of arbitrary length."
|
11 |
),
|
12 |
)
|
13 |
|