George commited on
Commit
cf4d742
1 Parent(s): a5775a1
Files changed (1) hide show
  1. README.md +128 -6
README.md CHANGED
@@ -12,7 +12,7 @@ size_categories:
12
  - n<1K
13
  ---
14
 
15
- # Dataset Card for "george-chou/pianos_wav"
16
  ## Requirements
17
  ```
18
  python 3.8-3.10
@@ -24,7 +24,7 @@ librosa
24
  ```
25
  from datasets import load_dataset
26
 
27
- data = load_dataset("george-chou/pianos_wav", split="train")
28
  labels = data.features['label'].names
29
 
30
  for item in data:
@@ -34,13 +34,131 @@ for item in data:
34
 
35
  ## Maintenance
36
  ```
37
- git clone git@hf.co:datasets/george-chou/pianos_wav
38
  ```
39
 
40
- ## Cite
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  ```
42
  @dataset{zhaorui_liu_2021_5676893,
43
- author = {Zhaorui Liu and Zijin Li},
44
  title = {{Music Data Sharing Platform for Computational Musicology Research (CCMUSIC DATASET)}},
45
  month = nov,
46
  year = 2021,
@@ -49,4 +167,8 @@ git clone git@hf.co:datasets/george-chou/pianos_wav
49
  doi = {10.5281/zenodo.5676893},
50
  url = {https://doi.org/10.5281/zenodo.5676893}
51
  }
52
- ```
 
 
 
 
 
12
  - n<1K
13
  ---
14
 
15
+ # Dataset Card for Piano Sound Quality Database
16
  ## Requirements
17
  ```
18
  python 3.8-3.10
 
24
  ```
25
  from datasets import load_dataset
26
 
27
+ data = load_dataset("ccmusic-database/piano_sound_quality", split="train")
28
  labels = data.features['label'].names
29
 
30
  for item in data:
 
34
 
35
  ## Maintenance
36
  ```
37
+ git clone git@hf.co:datasets/ccmusic-database/piano_sound_quality
38
  ```
39
 
40
+ ## Dataset Description
41
+
42
+ - **Homepage:** <https://ccmusic-database.github.io>
43
+ - **Repository:** <https://huggingface.co/datasets/CCMUSIC/piano_sound_quality>
44
+ - **Paper:** <https://doi.org/10.5281/zenodo.5676893>
45
+ - **Leaderboard:** <https://ccmusic-database.github.io/team.html>
46
+ - **Point of Contact:** N/A
47
+
48
+ ### Dataset Summary
49
+ This database contains 12 full-range audio files (.wav/.mp3/.m4a format) of 7 models of piano (KAWAI upright piano, KAWAI grand piano, Yingchang upright piano, Xinghai upright piano, Grand Theatre Steinway piano, Steinway grand piano, Pearl River upright piano) and 1320 split monophonic audio files (. wav/.mp3/.m4a format), for a total of 1332 files.
50
+
51
+ A score sheet (.xls format) of the piano sound quality rated by 29 people who participated in the subjective evaluation test is also included.
52
+
53
+ ### Supported Tasks and Leaderboards
54
+
55
+ Piano Sound Classification
56
+
57
+ ### Languages
58
+
59
+ English
60
+
61
+ ## Dataset Structure
62
+
63
+ ### Data Instances
64
+
65
+ .wav
66
+
67
+ ### Data Fields
68
+ ```
69
+ 1_PearlRiver
70
+ 2_YoungChang
71
+ 3_Steinway-T
72
+ 4_Hsinghai
73
+ 5_Kawai
74
+ 6_Steinway
75
+ 7_Kawai-G
76
+ 8_Yamaha
77
+ ```
78
+
79
+ ### Data Splits
80
+
81
+ trainset, validationset, testset
82
+
83
+ ## Dataset Creation
84
+
85
+ ### Curation Rationale
86
+
87
+ Lack of a dataset for piano sound quality
88
+
89
+ ### Source Data
90
+
91
+ #### Initial Data Collection and Normalization
92
+
93
+ Zhaorui Liu, Shaohua Ji, Monan Zhou
94
+
95
+ #### Who are the source language producers?
96
+
97
+ Students from CCMUSIC
98
+
99
+ ### Annotations
100
+
101
+ #### Annotation process
102
+
103
+ This database contains 12 full-range audio files (.wav/.mp3/.m4a format) of 7 models of piano (KAWAI upright piano, KAWAI grand piano, Yingchang upright piano, Xinghai upright piano, Grand Theatre Steinway piano, Steinway grand piano, Pearl River upright piano)
104
+
105
+ #### Who are the annotators?
106
+
107
+ Students from CCMUSIC
108
+
109
+ ### Personal and Sensitive Information
110
+
111
+ None
112
+
113
+ ## Considerations for Using the Data
114
+
115
+ ### Social Impact of Dataset
116
+
117
+ Help developing piano sound quality rating apps
118
+
119
+ ### Discussion of Biases
120
+
121
+ Only for pianos
122
+
123
+ ### Other Known Limitations
124
+
125
+ No black key in Steinway
126
+
127
+ ## Additional Information
128
+
129
+ ### Dataset Curators
130
+
131
+ Zijin Li
132
+
133
+ ### Licensing Information
134
+ ```
135
+ MIT License
136
+
137
+ Copyright (c) 2023 CCMUSIC
138
+
139
+ Permission is hereby granted, free of charge, to any person obtaining a copy
140
+ of this software and associated documentation files (the "Software"), to deal
141
+ in the Software without restriction, including without limitation the rights
142
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
143
+ copies of the Software, and to permit persons to whom the Software is
144
+ furnished to do so, subject to the following conditions:
145
+
146
+ The above copyright notice and this permission notice shall be included in all
147
+ copies or substantial portions of the Software.
148
+
149
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
150
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
151
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
152
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
153
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
154
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
155
+ SOFTWARE.
156
+ ```
157
+
158
+ ### Citation Information
159
  ```
160
  @dataset{zhaorui_liu_2021_5676893,
161
+ author = {Zhaorui Liu, Monan Zhou, Shenyang Xu and Zijin Li},
162
  title = {{Music Data Sharing Platform for Computational Musicology Research (CCMUSIC DATASET)}},
163
  month = nov,
164
  year = 2021,
 
167
  doi = {10.5281/zenodo.5676893},
168
  url = {https://doi.org/10.5281/zenodo.5676893}
169
  }
170
+ ```
171
+
172
+ ### Contributions
173
+
174
+ Provide a dataset for piano sound quality