Supagan's picture
Upload app.py
e552780
raw
history blame
198 Bytes
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()