antfraia's picture
Update app.py
c4316b9
raw
history blame
298 Bytes
import gradio as gr
gr.Interface.load("models/openai/whisper-large-v2").launch()
iface = gr.Interface(
title="Speech-to-Text using Whisper v2",
description="Upload an audio file to transcribe it to text.",
theme="Monochrome",
live=True,
capture_session=True,
)
iface.launch()