Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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()
|