Spaces:
Sleeping
Sleeping
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!"), | |
) | |
demo.launch() | |