LatinASR / app.py
thiagolira's picture
add link
33daece
raw
history blame contribute delete
No virus
486 Bytes
import gradio as gr
demo = gr.load("models/thiagolira/CiceroASR",
examples = [["./seneca.wav", "transcribe"],
["./salvete.wav", "transcribe"],
],
title = "Transcribe Classical Latin with CiceroASR!",
description=("Transcribe microphone or audio inputs with the click of a button! You can find the model here: https://huggingface.co/thiagolira/CiceroASR"),
)
demo.launch()