arham061 commited on
Commit
591a36f
1 Parent(s): cbd874f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ demo = gr.Interface(
4
+ fn=classify_audio, inputs=gr.Audio(type="filepath"), outputs="label"
5
+ )
6
+ demo.launch(debug=True)