NadiaHolmlund commited on
Commit
17b5456
1 Parent(s): 6ba19c4

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -0
app.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import pipeline
2
+ import gradio as gr
3
+
4
+ pipe = pipeline(model="NadiaHolmlund/Japanese_Fine_Tuned_Whisper_Model")
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="Tiny Whisper Model Fine-Tuned on Japanese",
15
+ description="Real-time demo for Japanese speech recognition. Using a fine-tuned tiny Whisper model, trained on the Common Voice dataset.",
16
+ )
17
+
18
+ iface.launch()