admin commited on
Commit
72b46ac
·
1 Parent(s): 70ba70b
Files changed (1) hide show
  1. README.md +70 -0
README.md CHANGED
@@ -1,3 +1,73 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+
5
+ # Intro 简介
6
+ The Chinese Traditional Instrument Sound Model is a cutting-edge research outcome based on the Chinese Traditional Instrument Sound Dataset. This model covers recordings of over 200 types of Chinese traditional musical instruments, modified instruments, and ethnic minority instruments. Notably, it includes some instruments that are rarely seen among the general public in China. By conducting in-depth analysis and learning of the sound characteristics of these instruments, the model can accurately identify and classify the sounds of various instruments, providing strong technical support for music information retrieval, musical instrument research, and the preservation and inheritance of ethnic music.
7
+
8
+ 中国传统乐器识别模型是一项基于中国传统乐器音响数据集训练得到的先进研究成果。该模型涵盖了 200 多种中国传统乐器、改良乐器以及少数民族乐器的录音。特别引人注目的是,这些乐器中包括了一些在中国大众中较为罕见的乐器。通过对这些乐器的声音特征进行深入分析和学习,该模型能够准确识别和分类各种乐器的声音,为音乐信息检索、乐器研究以及民族音乐的传承与保护提供了强有力的技术支持。
9
+
10
+ ## Demo 在线演示
11
+ <https://huggingface.co/spaces/ccmusic-database/CTIS>
12
+
13
+ ## Usage 使用
14
+ ```python
15
+ from modelscope import snapshot_download
16
+ model_dir = snapshot_download("ccmusic-database/CTIS")
17
+ ```
18
+
19
+ ## Maintenance 维护
20
+ ```bash
21
+ git clone [email protected]:ccmusic-database/CTIS
22
+ cd CTIS
23
+ ```
24
+
25
+ ## Results 训练结果
26
+ | Backbone | Size(M) | Mel | CQT | Chroma |
27
+ | :-----------: | :-----: | :---------: | :----------------------------------: | :---------: |
28
+ | vit_l_32 | 306.5 | 0.936 | 0.921 | **_0.845_** |
29
+ | swin_t | 28.3 | **_0.956_** | **_0.940_** | 0.759 |
30
+ | | | | | |
31
+ | regnet_y_32gf | 145 | **_0.973_** | [**_0.980_**](#best-result-最佳结果) | 0.848 |
32
+ | vgg19_bn | 143.7 | 0.966 | 0.965 | **_0.852_** |
33
+ | alexnet | 61.1 | 0.936 | 0.921 | 0.661 |
34
+ | resnet101 | 44.5 | 0.953 | 0.949 | 0.782 |
35
+ | inception_v3 | 27.2 | 0.860 | 0.855 | 0.664 |
36
+
37
+ ### Best result 最佳结果
38
+ <table>
39
+ <tr>
40
+ <th>Loss curve</th>
41
+ <td><img src="https://www.modelscope.cn/api/v1/models/ccmusic-database/CTIS/repo?Revision=master&FilePath=.%2Fregnet_y_32gf_cqt_2024-12-02_15-05-57%2Floss.jpg&View=true"></td>
42
+ </tr>
43
+ <tr>
44
+ <th>Training and validation accuracy</th>
45
+ <td><img src="https://www.modelscope.cn/api/v1/models/ccmusic-database/CTIS/repo?Revision=master&FilePath=.%2Fregnet_y_32gf_cqt_2024-12-02_15-05-57%2Facc.jpg&View=true"></td>
46
+ </tr>
47
+ <tr>
48
+ <th>Confusion matrix</th>
49
+ <td><img src="https://www.modelscope.cn/api/v1/models/ccmusic-database/CTIS/repo?Revision=master&FilePath=.%2Fregnet_y_32gf_cqt_2024-12-02_15-05-57%2Fmat.jpg&View=true"></td>
50
+ </tr>
51
+ </table>
52
+
53
+ ## Dataset 数据集
54
+ <https://huggingface.co/datasets/ccmusic-database/CTIS>
55
+
56
+ ## Mirror 镜像
57
+ <https://www.modelscope.cn/models/ccmusic-database/CTIS>
58
+
59
+ ## Evaluation 校验
60
+ <https://github.com/monetjoe/ccmusic_eval>
61
+
62
+ ## Cite 引用
63
+ ```bibtex
64
+ @dataset{zhaorui_liu_2021_5676893,
65
+ author = {Monan Zhou, Shenyang Xu, Zhaorui Liu, Zhaowen Wang, Feng Yu, Wei Li and Baoqiang Han},
66
+ title = {CCMusic: an Open and Diverse Database for Chinese Music Information Retrieval Research},
67
+ month = {Mar},
68
+ year = {2024},
69
+ publisher = {HuggingFace},
70
+ version = {1.2},
71
+ url = {https://huggingface.co/ccmusic-database}
72
+ }
73
+ ```