kavyamanohar commited on
Commit
023b708
1 Parent(s): bd41d04

Add examples

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -1,3 +1,8 @@
1
  import gradio as gr
2
 
3
- gr.load("models/leenag/Mal_ASR_Whisper_small_imasc_1000").launch()
 
 
 
 
 
 
1
  import gradio as gr
2
 
3
+ demo = gr.load("models/leenag/Mal_ASR_Whisper_small_imasc_1000",
4
+ examples=[
5
+ ["./sample1.wav", "transcribe", False],
6
+ ],)
7
+
8
+ demo.launch()