admin commited on
Commit
01a805f
·
1 Parent(s): 90a803f
Files changed (2) hide show
  1. .gitignore +1 -1
  2. README.md +9 -7
.gitignore CHANGED
@@ -1,2 +1,2 @@
1
- rename.sh
2
  test.*
 
1
+ *__pycache__*
2
  test.*
README.md CHANGED
@@ -138,7 +138,7 @@ configs:
138
  # Dataset Card for Chinese Musical Instruments Timbre Evaluation Database
139
  The original dataset is sourced from the [National Musical Instruments Timbre Evaluation Dataset](https://ccmusic-database.github.io/en/database/ccm.html#shou4), which includes subjective timbre evaluation scores using 16 terms such as bright, dark, raspy, etc., evaluated across 37 Chinese instruments and 24 Western instruments by Chinese participants with musical backgrounds in a subjective evaluation experiment. Additionally, it contains 10 spectrogram analysis reports for 10 instruments.
140
 
141
- Based on the aforementioned original dataset, after data processing, we have constructed the [default subset](#usage) of the current integrated version of the dataset, dividing the Chinese section and the Western section into two splits. Each split consists of multiple data entries, with each entry structured across 18 columns. The Chinese split includes 37 entries, while the Western split comprises 24 entries. The first column of each data entry presents the instrument recordings in .wav format, sampled at a rate of 44,100 Hz. The second column provides the Chinese pinyin or English name of the instrument. The following 16 columns correspond to the 9-point scores of the 16 terms. This dataset is suitable for conducting timbre analysis of musical instruments and can also be utilized for various single or multiple regression tasks related to term scoring. The data structure of the default subset can be viewed in the [viewer](https://www.modelscope.cn/datasets/ccmusic-database/instrument_timbre/dataPeview).
142
 
143
  ## Dataset Structure
144
  <style>
@@ -189,12 +189,14 @@ Chinese, English
189
  ```python
190
  from datasets import load_dataset
191
 
192
- ds = load_dataset("ccmusic-database/instrument_timbre")
193
- for item in ds["Chinese"]:
194
- print(item)
195
-
196
- for item in ds["Western"]:
197
- print(item)
 
 
198
  ```
199
 
200
  ## Maintenance
 
138
  # Dataset Card for Chinese Musical Instruments Timbre Evaluation Database
139
  The original dataset is sourced from the [National Musical Instruments Timbre Evaluation Dataset](https://ccmusic-database.github.io/en/database/ccm.html#shou4), which includes subjective timbre evaluation scores using 16 terms such as bright, dark, raspy, etc., evaluated across 37 Chinese instruments and 24 Western instruments by Chinese participants with musical backgrounds in a subjective evaluation experiment. Additionally, it contains 10 spectrogram analysis reports for 10 instruments.
140
 
141
+ Based on the aforementioned original dataset, after data processing, we have constructed the [default subset](#usage) of the current integrated version of the dataset, dividing the Chinese section and the Western section into two splits. Each split consists of multiple data entries, with each entry structured across 18 columns. The Chinese split includes 37 entries, while the Western split comprises 24 entries. The first column of each data entry presents the instrument recordings in .wav format, sampled at a rate of 44,100 Hz. The second column provides the Chinese pinyin or English name of the instrument. The following 16 columns correspond to the 9-point scores of the 16 terms. This dataset is suitable for conducting timbre analysis of musical instruments and can also be utilized for various single or multiple regression tasks related to term scoring. The data structure of the default subset can be viewed in the [viewer](https://huggingface.co/datasets/ccmusic-database/instrument_timbre/viewer).
142
 
143
  ## Dataset Structure
144
  <style>
 
189
  ```python
190
  from datasets import load_dataset
191
 
192
+ ds = load_dataset(
193
+ "ccmusic-database/instrument_timbre",
194
+ name="default",
195
+ split="Chinese", # Chinese / Western
196
+ cache_dir="./__pycache__",
197
+ )
198
+ for i in ds:
199
+ print(i)
200
  ```
201
 
202
  ## Maintenance