Update app.py
Browse files
app.py
CHANGED
@@ -1,18 +1,3 @@
|
|
1 |
-
from transformers import pipeline
|
2 |
import gradio as gr
|
3 |
|
4 |
-
|
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 |
-
outputs="text",
|
14 |
-
title="Whisper Algerien Daridja ",
|
15 |
-
description="Realtime demo for Algerien Daridja Speech Recognition using a fine-tuned Whisper small model.",
|
16 |
-
)
|
17 |
-
|
18 |
-
iface.launch()
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
gr.Interface.load("models/haouarin/whisper-small-daridja").launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|