Spaces:
Sleeping
Sleeping
kavyamanohar
commited on
Commit
•
5328a92
1
Parent(s):
fc35731
Update app.py
Browse files
app.py
CHANGED
@@ -1,14 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
-
MODEL_NAME = "leenag/Mal_ASR_Whisper_small_imasc_1000"
|
3 |
|
4 |
-
demo = gr.load(
|
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 |
|
14 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
|
|
2 |
|
3 |
+
demo = gr.load("models/leenag/Mal_ASR_Whisper_small_imasc_1000",
|
4 |
examples = [["./example.wav", "transcribe", False],
|
5 |
],
|
6 |
title = "VRCLC Malayalam Speech Recognition Demo",
|
|
|
|
|
|
|
|
|
7 |
)
|
8 |
|
9 |
demo.launch()
|