Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ model_id = "ceefax/distilhubert-finetuned-gtzan"
|
|
9 |
pipe = pipeline("audio-classification", model=model_id)
|
10 |
title = "Genre Classifier"
|
11 |
description = "Genre classifier trained on GTZAN"
|
12 |
-
|
13 |
interpretation='default'
|
14 |
enable_queue=True
|
15 |
|
@@ -22,6 +22,6 @@ def classify_audio(filepath):
|
|
22 |
|
23 |
demo = gr.Interface(
|
24 |
fn=classify_audio, inputs=gr.Audio(type="filepath"), outputs=gr.outputs.Label(), title=title,description=description
|
25 |
-
|
26 |
,interpretation=interpretation,enable_queue=enable_queue
|
27 |
).launch()
|
|
|
9 |
pipe = pipeline("audio-classification", model=model_id)
|
10 |
title = "Genre Classifier"
|
11 |
description = "Genre classifier trained on GTZAN"
|
12 |
+
examples = ['smoke-143172.mp3']
|
13 |
interpretation='default'
|
14 |
enable_queue=True
|
15 |
|
|
|
22 |
|
23 |
demo = gr.Interface(
|
24 |
fn=classify_audio, inputs=gr.Audio(type="filepath"), outputs=gr.outputs.Label(), title=title,description=description
|
25 |
+
,examples=examples
|
26 |
,interpretation=interpretation,enable_queue=enable_queue
|
27 |
).launch()
|