seanghay's picture
Add application file
383fa3e verified
raw history blame
No virus
501 Bytes
from transformers import pipeline
import gradio as gr
pipe = pipeline(model="seanghay/whisper-small-km") # 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 Khmer",
description="Realtime demo for Khmer speech recognition using a fine-tuned Whisper small model.",
)
iface.launch()