elina12 commited on
Commit
1cd9db7
1 Parent(s): a57a135

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -1
app.py CHANGED
@@ -1,4 +1,17 @@
 
1
  import gradio as gr
2
 
3
- model_interface = gr.Interface.load("models/tarteel-ai/whisper-base-ar-quran",wait=True).launch()
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import pipeline
2
  import gradio as gr
3
 
4
+ pipe = pipeline(model="models/tarteel-ai/whisper-base-ar-quran")
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="upload", type="filepath"),
13
+ outputs="text",
14
+
15
+ )
16
+
17
+ iface.launch()