jbatista79's picture
Create app.py
00296e3 verified
raw
history blame
No virus
651 Bytes
from transformers import pipeline
import gradio as gr
pipe = pipeline(model="jbatista79/whisper-small-eu") # 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"),
inputs=gr.Audio(sources=["microphone"], type="filepath"),
outputs="text",
title="Whisper Small Basque - Euskara (EU)",
description="Realtime proof-of-concept demo for Basque speech recognition using a fine-tuned Whisper small model. Created by Josué R. Batista - 2024-01-13",
)
iface.launch(share=True)