Spaces:
Runtime error
Runtime error
kavyamanohar
commited on
Commit
•
023b708
1
Parent(s):
bd41d04
Add examples
Browse files
app.py
CHANGED
@@ -1,3 +1,8 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
gr.load("models/leenag/Mal_ASR_Whisper_small_imasc_1000"
|
|
|
|
|
|
|
|
|
|
|
|
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()
|