Spaces:
Sleeping
Sleeping
Taejun Kim
commited on
Commit
·
269c399
1
Parent(s):
4bb84bd
Add descriptions
Browse files
README.md
CHANGED
@@ -11,4 +11,13 @@ pinned: false
|
|
11 |
license: mit
|
12 |
---
|
13 |
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
license: mit
|
12 |
---
|
13 |
|
14 |
+
# All-In-One Music Structure Analyzer
|
15 |
+
|
16 |
+
This Space demonstrates [All-In-One Music Structure Analyzer](https://github.com/mir-aidj/all-in-one),
|
17 |
+
a tool that predicts the BPM, beats, downbeats, segment boundaries, and functional segment labels from audio files.
|
18 |
+
|
19 |
+
For more information, please visit:
|
20 |
+
- Python package: [`allin1`](https://github.com/mir-aidj/all-in-one)
|
21 |
+
- Structure visualizer: [Music Dissector](https://taejun.kim/music-dissector/)
|
22 |
+
- Paper: [All-In-One Metrical And Functional Structure Analysis With Neighborhood Attentions on Demixed Audio
|
23 |
+
](https://arxiv.org/abs/2307.16425)
|
app.py
CHANGED
@@ -6,7 +6,14 @@ from pathlib import Path
|
|
6 |
DESCRIPTION = """
|
7 |
# All-In-One Music Structure Analyzer
|
8 |
|
9 |
-
This Space demonstrates
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
"""
|
11 |
|
12 |
|
|
|
6 |
DESCRIPTION = """
|
7 |
# All-In-One Music Structure Analyzer
|
8 |
|
9 |
+
This Space demonstrates [All-In-One Music Structure Analyzer](https://github.com/mir-aidj/all-in-one),
|
10 |
+
a tool that predicts the BPM, beats, downbeats, segment boundaries, and functional segment labels from audio files.
|
11 |
+
|
12 |
+
For more information, please visit:
|
13 |
+
- Python package: [`allin1`](https://github.com/mir-aidj/all-in-one)
|
14 |
+
- Structure visualizer: [Music Dissector](https://taejun.kim/music-dissector/)
|
15 |
+
- Paper: [All-In-One Metrical And Functional Structure Analysis With Neighborhood Attentions on Demixed Audio
|
16 |
+
](https://arxiv.org/abs/2307.16425)
|
17 |
"""
|
18 |
|
19 |
|