medimage / app.py
hubsnippetai's picture
Create app.py
79680cd verified
raw
history blame contribute delete
No virus
183 Bytes
from transformers import pipeline
import gradio as gr
transcriber = pipeline(model="openai/whisper-large-v2", return_timestamps=True)
gr.Interface.from_pipeline(transcriber).launch()