oyemade commited on
Commit
1503a0a
·
verified ·
1 Parent(s): 3872152

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -4
app.py CHANGED
@@ -1,7 +1,18 @@
 
1
  import gradio as gr
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
5
 
6
- demo = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- demo.launch()
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import pipeline
2
  import gradio as gr
3
 
4
+ pipe = pipeline(model="oyemade/w2v-bert-2.0-yoruba-CV17.0")
 
5
 
6
+ def transcribe(audio):
7
+ text = pipe(audio)["text"]
8
+ return text
9
+
10
+ iface = gr.Interface(
11
+ fn=transcribe,
12
+ inputs=gr.Audio(sources="microphone", type="filepath"),
13
+ outputs="text",
14
+ title="Neoform: Yoruba Speech Recognition",
15
+ description="Realtime demo for Yoruba speech recognition using a fine-tuned Wav2Vec-Bert model.",
16
+ )
17
+
18
+ iface.launch()