kavyamanohar commited on
Commit
53c407a
·
verified ·
1 Parent(s): 97d5aeb
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -1,10 +1,12 @@
1
  import gradio as gr
2
  MODEL_NAME = "leenag/Mal_ASR_Whisper_small_imasc_1000"
3
 
4
- demo = gr.load(model = MODEL_NAME,
5
  examples = [["./sample1.wav", "transcribe", False],
6
  ],
7
- description=("Transcribe microphone or audio inputs with the click of a button! This demo uses the "f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"" of arbitrary length."
 
 
8
  ),
9
  )
10
 
 
1
  import gradio as gr
2
  MODEL_NAME = "leenag/Mal_ASR_Whisper_small_imasc_1000"
3
 
4
+ demo = gr.load(name = MODEL_NAME,
5
  examples = [["./sample1.wav", "transcribe", False],
6
  ],
7
+ title = "VRCLC Malayalam Speech Recognition Demo",
8
+ description=("Transcribe microphone or audio inputs with the click of a button!
9
+ This demo uses the "f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to transcribe audio files"" of arbitrary length."
10
  ),
11
  )
12