Spaces:
Runtime error
Runtime error
shamik-lseg
commited on
Commit
•
8d36f51
1
Parent(s):
bbb0227
Added the relevant contents to the Readme and updated the app.py.
Browse files
README.md
CHANGED
@@ -1 +1,9 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
title: Song Classifier
|
2 |
+
emoji: Music
|
3 |
+
colorFrom: blue
|
4 |
+
colorTo: gray
|
5 |
+
sdk: gradio
|
6 |
+
sdk_version: 3.9
|
7 |
+
app_file: app.py
|
8 |
+
pinned: false
|
9 |
+
license: apache-2.0
|
app.py
CHANGED
@@ -29,5 +29,5 @@ demo = gr.Interface(fn=classify_audio,
|
|
29 |
outputs=label,
|
30 |
title=title,
|
31 |
description=description,
|
32 |
-
examples=[["song1.ogg"], ["song2.ogg"], ["song3.ogg"], ["song4.ogg"]]
|
33 |
demo.launch()
|
|
|
29 |
outputs=label,
|
30 |
title=title,
|
31 |
description=description,
|
32 |
+
examples=[["song1.ogg"], ["song2.ogg"], ["song3.ogg"], ["song4.ogg"]])
|
33 |
demo.launch()
|