Spaces:
Runtime error
Runtime error
JackismyShephard
commited on
Commit
•
d1d5581
1
Parent(s):
e515109
Update space title and emoji
Browse files- .gitattributes +1 -0
- README.md +2 -2
- app.py +1 -1
.gitattributes
CHANGED
@@ -37,3 +37,4 @@ AgusAlvarez[[:space:]]&[[:space:]]Markvard[[:space:]]-[[:space:]]Beautiful[[:spa
|
|
37 |
Pufino[[:space:]]-[[:space:]]Enlivening[[:space:]](freetouse.com).mp3 filter=lfs diff=lfs merge=lfs -text
|
38 |
Pufino[[:space:]]-[[:space:]]Stadium[[:space:]]Rock[[:space:]](freetouse.com).mp3 filter=lfs diff=lfs merge=lfs -text
|
39 |
tubebackr[[:space:]]-[[:space:]]Dream[[:space:]]Potion[[:space:]](freetouse.com).mp3 filter=lfs diff=lfs merge=lfs -text
|
|
|
|
37 |
Pufino[[:space:]]-[[:space:]]Enlivening[[:space:]](freetouse.com).mp3 filter=lfs diff=lfs merge=lfs -text
|
38 |
Pufino[[:space:]]-[[:space:]]Stadium[[:space:]]Rock[[:space:]](freetouse.com).mp3 filter=lfs diff=lfs merge=lfs -text
|
39 |
tubebackr[[:space:]]-[[:space:]]Dream[[:space:]]Potion[[:space:]](freetouse.com).mp3 filter=lfs diff=lfs merge=lfs -text
|
40 |
+
*.jpg filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
colorFrom: gray
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
|
|
1 |
---
|
2 |
+
title: Music Genre Classification
|
3 |
+
emoji: 🎸
|
4 |
colorFrom: gray
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
app.py
CHANGED
@@ -24,7 +24,7 @@ demo = gr.Interface(
|
|
24 |
fn=classify_audio,
|
25 |
inputs= gr.Audio(sources=["upload", "microphone"], label="Audio file", type="filepath"),
|
26 |
outputs=gr.Label(),
|
27 |
-
title="
|
28 |
description=(
|
29 |
"Classify long-form audio or microphone inputs with the click of a button! Demo uses the"
|
30 |
f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to classify audio files"
|
|
|
24 |
fn=classify_audio,
|
25 |
inputs= gr.Audio(sources=["upload", "microphone"], label="Audio file", type="filepath"),
|
26 |
outputs=gr.Label(),
|
27 |
+
title="Music Genre Classification",
|
28 |
description=(
|
29 |
"Classify long-form audio or microphone inputs with the click of a button! Demo uses the"
|
30 |
f" checkpoint [{MODEL_NAME}](https://huggingface.co/{MODEL_NAME}) and 🤗 Transformers to classify audio files"
|