antonbol's picture
Update app.py
b9d1b4c
raw
history blame
618 Bytes
from transformers import pipeline
import gradio as gr
from os import listdir
pipe = pipeline(model="fimster/whisper-small-sv-SE") # change to "your-username/the-name-you-picked"
onlyfiles = [f for f in listdir("./images/") if isfile(join(mypath, f))]
print(onlyfiles)
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",
description="Realtime demo for Swedish speech recognition using a fine-tuned Whisper small model.",
)
iface.launch()