Spaces:
Sleeping
Sleeping
kavyamanohar
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,11 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
gr.load("models/vrclc/W2V2-BERT-withLM-Malayalam",
|
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()
|