jbatista79 commited on
Commit
cd876f3
1 Parent(s): 600da46

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -0
app.py ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import pipeline
2
+ import gradio as gr
3
+
4
+ pipe = pipeline(model="jbatista79/whisper-small-hi") # change to "your-username/the-name-you-picked"
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(source="microphone", type="filepath"),
13
+ inputs=gr.Audio(sources=["microphone"], type="filepath"),
14
+ outputs="text",
15
+ title="Whisper Small Hindi - JRB",
16
+ description="Realtime proof-of-concept demo for Hindi speech recognition using a fine-tuned Whisper small model. Created by Josué R. Batista - 2024-01-13",
17
+ )
18
+
19
+ iface.launch(share=True)