sharner commited on
Commit
69a9bd1
1 Parent(s): df94914
Files changed (2) hide show
  1. README.md +2 -2
  2. app.py +18 -0
README.md CHANGED
@@ -1,10 +1,10 @@
1
  ---
2
  title: Whisper Swedish
3
- emoji: 📈
4
  colorFrom: green
5
  colorTo: indigo
6
  sdk: gradio
7
- sdk_version: 4.7.1
8
  app_file: app.py
9
  pinned: false
10
  ---
 
1
  ---
2
  title: Whisper Swedish
3
+ emoji: 🇸🇪
4
  colorFrom: green
5
  colorTo: indigo
6
  sdk: gradio
7
+ sdk_version: 3.8.2
8
  app_file: app.py
9
  pinned: false
10
  ---
app.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import pipeline
2
+ import gradio as gr
3
+
4
+ pipe = pipeline(model="SamuelHarner/whisper") # 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(source="microphone", type="filepath"),
13
+ outputs="text",
14
+ title="Whisper Small Swedish",
15
+ description="Realtime demo for Swedish speech recognition using a fine-tuned Whisper small model.",
16
+ )
17
+
18
+ iface.launch()