Whisper / app.py
MehdiAbdellaoui's picture
Update app.py
da224fd
raw
history blame
No virus
567 Bytes
from transformers import pipeline
import gradio as gr
pipe = pipeline(model="Scalable-ML/whisper-small-sv-dropout-6mb-checkpoint-2000")
def transcribe(audio):
text = pipe(audio)["text"]
return text
iface = gr.Interface(
fn=transcribe,
inputs=gr.Audio(source="microphone", type="filepath"),
outputs="text",
title="Whisper Small Swedish to English Translator",
description="Realtime demo for Swedish speech recognition using a fine-tuned Whisper small model, and Swedish to English translation using a small T5 model",
)
iface.launch()