Pattr commited on
Commit
df7326d
·
1 Parent(s): 1297377

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import numpy
3
+ import pathlib
4
+
5
+ def transcribe():
6
+
7
+ return "drum sheet"
8
+
9
+ gr.Interface(
10
+ fn=transcribe,
11
+ inputs=gr.Audio(type="filepath"),
12
+ outputs="text").launch()