kavyamanohar commited on
Commit
e64bf3d
·
verified ·
1 Parent(s): 86d605b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -1,5 +1,11 @@
1
  import gradio as gr
2
 
3
- gr.load("models/vrclc/W2V2-BERT-withLM-Malayalam", title = "VRCLC - Malayalam Speech Recognition").launch()
4
-
 
 
 
 
 
5
 
 
 
1
  import gradio as gr
2
 
3
+ demo = gr.load("models/vrclc/W2V2-BERT-withLM-Malayalam",
4
+ examples = [["./sample.wav"],
5
+ ],
6
+ title = "VRCLC - Malayalam Speech Recognition",
7
+ description=("Transcribe microphone or audio inputs with the click of a button!"),
8
+ cache_examples=False
9
+ )
10
 
11
+ demo.launch()