sukantan's picture
Update app.py
38e454d
raw
history blame contribute delete
No virus
499 Bytes
from transformers import pipeline
import gradio as gr
pipe = pipeline(model="sukantan/whisper-small-or") # 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 Odia",
description="Realtime demo for Odia speech recognition using a fine-tuned Whisper small model.",
)
iface.launch()