hp1318 commited on
Commit
423e0fa
·
verified ·
1 Parent(s): 53269b3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,5 +6,5 @@ def classify_audio(filepath):
6
  preds = pipe(filepath)
7
  outputs = {p["label"]: p["score"] for p in preds}
8
  return outputs
9
- demo = gr.Interface(fn=classify_audio, inputs=gr.Audio(type="filepath"), outputs=gr.Label())
10
  demo.launch()
 
6
  preds = pipe(filepath)
7
  outputs = {p["label"]: p["score"] for p in preds}
8
  return outputs
9
+ demo = gr.Interface(fn=classify_audio, inputs=gr.Audio(type="filepath"), outputs=gr.Label(),title="Music Genre Classifier",description="Classify music into different genres")
10
  demo.launch()