kavyamanohar's picture
Update app.py
818a2f8 verified
raw
history blame contribute delete
364 Bytes
import gradio as gr
demo = gr.load("models/vrclc/Whisper-medium-Malayalam",
examples = [["./sample.wav"],
],
title = "VRCLC - Malayalam Speech Recognition",
description=("Transcribe microphone or audio inputs with the click of a button!"),
cache_examples=False
)
demo.launch()