sandriansandy
commited on
Commit
•
cd812d6
1
Parent(s):
8ac0ee1
init
Browse files- app.py +18 -0
- requirements.txt +3 -0
app.py
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import pipeline
|
2 |
+
import gradio as gr
|
3 |
+
|
4 |
+
pipe = pipeline(model="Sandrian/whisper-small-id-sandy") # 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(type="filepath"),
|
13 |
+
outputs="text",
|
14 |
+
title="Indonesian Small Whisper",
|
15 |
+
description="Demo for Indonesian speech recognition using a fine-tuned Whisper small model.",
|
16 |
+
)
|
17 |
+
|
18 |
+
iface.launch()
|
requirements.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
torch
|
2 |
+
gradio
|
3 |
+
transformers
|