polish_whisper / app.py
filipzawadka's picture
switch model
d3e142c
raw
history blame
No virus
508 Bytes
from transformers import pipeline
import gradio as gr
pipe = pipeline(model="filipzawadka/whisper-small-pl-2") # change to "your-username/the-name-you-picked"
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 Polish",
description="Realtime demo for Polish speech recognition using a fine-tuned Whisper small model.",
)
iface.launch()