c3c8722 e552780 c3c8722
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr import numpy import pathlib def transcribe(): return "drum sheet" gr.Interface( fn=transcribe, inputs=gr.Audio(type="filepath"), outputs="text").launch()