Ant commited on
Commit
4b6701b
1 Parent(s): 3dc54ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -22,6 +22,7 @@ def classify_audio(filepath):
22
  import gradio as gr
23
 
24
  demo = gr.Interface(
25
- fn=classify_audio, inputs=gr.Audio(type="filepath"), outputs=gr.outputs.Label(), gr.Number(label="Prediction time (s)")
 
26
  )
27
  demo.launch(debug=True)
 
22
  import gradio as gr
23
 
24
  demo = gr.Interface(
25
+ fn=classify_audio, inputs=gr.Audio(type="filepath"), outputs=[gr.outputs.Label(), gr.Number(label="Prediction time (s)")], title="Distilhubert-finetuned-gtzan",
26
+ description="Audio classifier based on music genres, for more check out my github ar www.github.com/Ferno22"
27
  )
28
  demo.launch(debug=True)