admin
commited on
Commit
·
15d1f61
1
Parent(s):
e896606
Update README.md
Browse files
README.md
CHANGED
@@ -1,33 +1,34 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
---
|
4 |
-
|
5 |
-
Our evaluation methodology adopted the approach for structural segmentation evaluation outlined in the Harmonix set, which employed Structural Features for boundary identification, and 2D-Fourier Magnitude Coefficients (2D-FMC) for segment labeling based on acoustic similarity. CQT features serve as input features for the algorithm. The algorithm is implemented using Music Structure Analysis Framework (MSAF). For evaluation metrics, the F-measure is reported for the following metrics: Hit Rate with 0.5 and 3-second windows for boundary retrieval, Pairwise Frame Clustering and Entropy Scores for segment labeling. The evaluation is implemented using mir_eval.
|
6 |
-
|
7 |
-
## Evaluation result
|
8 |
-
<img src="./segment_results.jpg">
|
9 |
-
|
10 |
-
## Download
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
}
|
|
|
33 |
```
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
4 |
+
|
5 |
+
Our evaluation methodology adopted the approach for structural segmentation evaluation outlined in the Harmonix set, which employed Structural Features for boundary identification, and 2D-Fourier Magnitude Coefficients (2D-FMC) for segment labeling based on acoustic similarity. CQT features serve as input features for the algorithm. The algorithm is implemented using Music Structure Analysis Framework (MSAF). For evaluation metrics, the F-measure is reported for the following metrics: Hit Rate with 0.5 and 3-second windows for boundary retrieval, Pairwise Frame Clustering and Entropy Scores for segment labeling. The evaluation is implemented using mir_eval.
|
6 |
+
|
7 |
+
## Evaluation result
|
8 |
+
<img src="./segment_results.jpg">
|
9 |
+
|
10 |
+
## Download
|
11 |
+
### By Git
|
12 |
+
```bash
|
13 |
+
git clone https://www.modelscope.cn/ccmusic-database/song_structure.git
|
14 |
+
pip install modelscope
|
15 |
+
```
|
16 |
+
|
17 |
+
### By API
|
18 |
+
```python
|
19 |
+
from modelscope import snapshot_download
|
20 |
+
model_dir = snapshot_download('ccmusic-database/song_structure')
|
21 |
+
```
|
22 |
+
|
23 |
+
## Cite
|
24 |
+
```bibtex
|
25 |
+
@dataset{zhaorui_liu_2021_5676893,
|
26 |
+
author = {Monan Zhou, Shenyang Xu, Zhaorui Liu, Zhaowen Wang, Feng Yu, Wei Li and Baoqiang Han},
|
27 |
+
title = {CCMusic: an Open and Diverse Database for Chinese and General Music Information Retrieval Research},
|
28 |
+
month = {mar},
|
29 |
+
year = {2024},
|
30 |
+
publisher = {HuggingFace},
|
31 |
+
version = {1.2},
|
32 |
+
url = {https://huggingface.co/ccmusic-database}
|
33 |
+
}
|
34 |
```
|