SebLih commited on
Commit
4644c67
·
1 Parent(s): f759d40

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -18
app.py DELETED
@@ -1,18 +0,0 @@
1
- import gradio as gr
2
- from transformers import pipeline
3
-
4
- pipe = pipeline(model="SebLih/whisper-SV3") # 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 speech recognition and transcription of Swedish language through the use of a Whisper small model.",
16
- )
17
-
18
- iface.launch(share=True)