File size: 486 Bytes
b76391f
 
 
 
 
 
 
 
33daece
b76391f
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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()