Spaces:
Sleeping
Sleeping
owwe
commited on
Commit
·
9d1a33c
1
Parent(s):
d63bc90
first commit
Browse files- .vscode/settings.json +3 -0
- app.py +22 -0
- requirements.txt +2 -0
.vscode/settings.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"editor.formatOnSave": true
|
3 |
+
}
|
app.py
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import pipeline
|
2 |
+
import gradio as gr
|
3 |
+
|
4 |
+
pipe = pipeline(
|
5 |
+
model="kiwipirate/whisper_tr"
|
6 |
+
) # change to "your-username/the-name-you-picked"
|
7 |
+
|
8 |
+
|
9 |
+
def transcribe(audio):
|
10 |
+
text = pipe(audio)["text"]
|
11 |
+
return text
|
12 |
+
|
13 |
+
|
14 |
+
iface = gr.Interface(
|
15 |
+
fn=transcribe,
|
16 |
+
inputs=gr.Audio(source="microphone", type="filepath"),
|
17 |
+
outputs="text",
|
18 |
+
title="Whisper Small Turkish",
|
19 |
+
description="Realtime demo for Swedish speech recognition using a fine-tuned Whisper small model.",
|
20 |
+
)
|
21 |
+
|
22 |
+
iface.launch()
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
transformers
|
2 |
+
gradio
|