MuGeminorum commited on
Commit
8ea8580
1 Parent(s): 5975a08
README.md CHANGED
@@ -15,90 +15,89 @@ size_categories:
15
  - n<1K
16
  viewer: false
17
  ---
 
18
  # Dataset Card for Acapella Evaluation
 
19
 
20
  ## Dataset Description
21
-
22
  - **Homepage:** <https://ccmusic-database.github.io>
23
  - **Repository:** <https://huggingface.co/datasets/CCMUSIC/acapella_evaluation>
24
  - **Paper:** <https://doi.org/10.5281/zenodo.5676893>
25
- - **Leaderboard:** <https://ccmusic-database.github.io/team.html>
26
  - **Point of Contact:** <https://www.mdpi.com/2076-3417/12/19/9931>
27
 
28
  ### Dataset Summary
29
-
30
- This database contains 6 Mandarin song segments sung by 22 singers, totaling 132 audio clips. Each segment consists of a verse and a chorus. Four judges evaluate the singing from nine aspects which are pitch, rhythm, vocal range, timbre, pronunciation, vibrato, dynamic, breath control and overall performance on a 10-point scale. The scores are recorded in a sheet.
31
 
32
  ### Supported Tasks and Leaderboards
33
-
34
  Acapella evaluation/scoring
35
 
36
  ### Languages
37
-
38
  Chinese, English
39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  ## Dataset Structure
 
 
 
41
 
42
  ### Data Instances
43
-
44
  .wav & .csv
45
 
46
  ### Data Fields
47
-
48
  song, singer id, pitch, rhythm, vocal range, timbre, pronunciation, vibrato, dynamic, breath control and overall performance
49
 
50
  ### Data Splits
51
-
52
  song1-6
53
 
54
  ## Dataset Creation
55
-
56
  ### Curation Rationale
57
-
58
- Lack of a training dataset for acapella scoring system
59
 
60
  ### Source Data
61
-
62
  #### Initial Data Collection and Normalization
63
-
64
  Zhaorui Liu, Monan Zhou
65
 
66
  #### Who are the source language producers?
67
-
68
  Students and judges from CCMUSIC
69
 
70
  ### Annotations
71
-
72
  #### Annotation process
73
-
74
- 6 Mandarin song segments were sung by 22 singers, totaling 132 audio clips. Each segment consists of a verse and a chorus. Four judges evaluate the singing from nine aspects which are pitch, rhythm, vocal range, timbre, pronunciation, vibrato, dynamic, breath control and overall performance on a 10-point scale. The scores are recorded in a sheet.
75
 
76
  #### Who are the annotators?
77
-
78
  Judges from CCMUSIC
79
 
80
  ### Personal and Sensitive Information
81
-
82
  Singers' and judges' names are hided
83
 
84
  ## Considerations for Using the Data
85
-
86
  ### Social Impact of Dataset
87
-
88
- Providing a training dataset for acapella scoring system may improve the developement of related Apps
89
 
90
  ### Discussion of Biases
91
-
92
  Only for Mandarin songs
93
 
94
  ### Other Known Limitations
95
-
96
  No starting point has been marked for the vocal
97
 
98
  ## Additional Information
99
-
100
  ### Dataset Curators
101
-
102
  Zijin Li
103
 
104
  ### Evaluation
@@ -130,18 +129,16 @@ SOFTWARE.
130
  ```
131
 
132
  ### Citation Information
133
- ```
134
  @dataset{zhaorui_liu_2021_5676893,
135
- author = {Zhaorui Liu, Monan Zhou, Shenyang Xu, Yuan Wang, Zhaowen Wang, Wei Li and Zijin Li},
136
- title = {CCMUSIC DATABASE: A Music Data Sharing Platform for Computational Musicology Research},
137
- month = {nov},
138
- year = {2021},
139
- publisher = {Zenodo},
140
- version = {1.1},
141
- doi = {10.5281/zenodo.5676893},
142
- url = {https://doi.org/10.5281/zenodo.5676893}
143
  }
144
  ```
145
  ### Contributions
146
-
147
- Provide a training dataset for acapella scoring system
 
15
  - n<1K
16
  viewer: false
17
  ---
18
+
19
  # Dataset Card for Acapella Evaluation
20
+ This raw dataset comprises six Mandarin pop song segments performed by 22 singers, resulting in a total of 132 audio clips. Each segment includes both a verse and a chorus. Four judges from the China Conservatory of Music assess the singing across nine dimensions: pitch, rhythm, vocal range, timbre, pronunciation, vibrato, dynamics, breath control, and overall performance, using a 10-point scale. The evaluations are recorded in an Excel spreadsheet in .xls format.
21
 
22
  ## Dataset Description
 
23
  - **Homepage:** <https://ccmusic-database.github.io>
24
  - **Repository:** <https://huggingface.co/datasets/CCMUSIC/acapella_evaluation>
25
  - **Paper:** <https://doi.org/10.5281/zenodo.5676893>
26
+ - **Leaderboard:** <https://www.modelscope.cn/datasets/ccmusic/acapella>
27
  - **Point of Contact:** <https://www.mdpi.com/2076-3417/12/19/9931>
28
 
29
  ### Dataset Summary
30
+ Due to the original dataset comprising separate files for audio recordings and evaluation sheets, which hindered efficient data retrieval, we have consolidated the raw vocal recordings with their corresponding assessments. The dataset is divided into six segments, each representing a different song, resulting in a total of six divisions. Each segment contains 22 entries, with each entry detailing the vocal recording of an individual singer sampled at 22,050 Hz, the singer's ID, and evaluations across the nine dimensions previously mentioned. Consequently, each entry encompasses 11 columns of data. This dataset is well-suited for tasks such as vocal analysis and regression-based singing voice rating. For instance, as previously stated, the final column of each entry denotes the overall performance score, allowing the audio to be utilized as data and this score to serve as the label for regression analysis.
 
31
 
32
  ### Supported Tasks and Leaderboards
 
33
  Acapella evaluation/scoring
34
 
35
  ### Languages
 
36
  Chinese, English
37
 
38
+ ## Maintenance
39
+ ```bash
40
+ GIT_LFS_SKIP_SMUDGE=1 git clone git@hf.co:datasets/ccmusic-database/acapella
41
+ cd music_genre
42
+ ```
43
+
44
+ ## Usage
45
+ ```python
46
+ from datasets import load_dataset
47
+
48
+ dataset = load_dataset("ccmusic-database/acapella")
49
+ for i in range(1, 7):
50
+ for item in dataset[f"song{i}"]:
51
+ print(item)
52
+ ```
53
+
54
  ## Dataset Structure
55
+ | audio(22050Hz) | mel(22050Hz) | singer_id | pitch / rhythm / ... / overall_performance |
56
+ | :--------------------------------------------------: | :-------------------------------: | :-------: | :----------------------------------------: |
57
+ | <audio controls src="./data/song1 (16).wav"></audio> | <img src="./data/song1 (16).jpg"> | int | float(0-10) |
58
 
59
  ### Data Instances
 
60
  .wav & .csv
61
 
62
  ### Data Fields
 
63
  song, singer id, pitch, rhythm, vocal range, timbre, pronunciation, vibrato, dynamic, breath control and overall performance
64
 
65
  ### Data Splits
 
66
  song1-6
67
 
68
  ## Dataset Creation
 
69
  ### Curation Rationale
70
+ Lack of a training dataset for the acapella scoring system
 
71
 
72
  ### Source Data
 
73
  #### Initial Data Collection and Normalization
 
74
  Zhaorui Liu, Monan Zhou
75
 
76
  #### Who are the source language producers?
 
77
  Students and judges from CCMUSIC
78
 
79
  ### Annotations
 
80
  #### Annotation process
81
+ 6 Mandarin song segments were sung by 22 singers, totaling 132 audio clips. Each segment consists of a verse and a chorus. Four judges evaluate the singing from nine aspects which are pitch, rhythm, vocal range, timbre, pronunciation, vibrato, dynamic, breath control and overall performance on a 10-point scale. The scores are recorded on a sheet.
 
82
 
83
  #### Who are the annotators?
 
84
  Judges from CCMUSIC
85
 
86
  ### Personal and Sensitive Information
 
87
  Singers' and judges' names are hided
88
 
89
  ## Considerations for Using the Data
 
90
  ### Social Impact of Dataset
91
+ Providing a training dataset for the acapella scoring system may improve the development of related Apps
 
92
 
93
  ### Discussion of Biases
 
94
  Only for Mandarin songs
95
 
96
  ### Other Known Limitations
 
97
  No starting point has been marked for the vocal
98
 
99
  ## Additional Information
 
100
  ### Dataset Curators
 
101
  Zijin Li
102
 
103
  ### Evaluation
 
129
  ```
130
 
131
  ### Citation Information
132
+ ```bibtex
133
  @dataset{zhaorui_liu_2021_5676893,
134
+ author = {Monan Zhou, Shenyang Xu, Zhaorui Liu, Zhaowen Wang, Feng Yu, Wei Li and Baoqiang Han},
135
+ title = {CCMusic: an Open and Diverse Database for Chinese and General Music Information Retrieval Research},
136
+ month = {mar},
137
+ year = {2024},
138
+ publisher = {HuggingFace},
139
+ version = {1.2},
140
+ url = {https://huggingface.co/ccmusic-database}
 
141
  }
142
  ```
143
  ### Contributions
144
+ Provide a training dataset for the acapella scoring system
 
acapella.py CHANGED
@@ -5,34 +5,35 @@ from datasets.tasks import AudioClassification
5
 
6
 
7
  _NAMES = {
8
- 'songs': ['song' + str(i) for i in range(1, 7)],
9
- 'singers': ['singer' + str(i) for i in range(1, 23)]
10
  }
11
 
12
- _HOMEPAGE = f"https://huggingface.co/datasets/ccmusic-database/{os.path.basename(__file__).split('.')[0]}"
 
 
 
 
13
 
14
  _CITATION = """\
15
  @dataset{zhaorui_liu_2021_5676893,
16
- author = {Zhaorui Liu, Monan Zhou, Shenyang Xu, Yuan Wang, Zhaowen Wang, Wei Li and Zijin Li},
17
- title = {CCMUSIC DATABASE: A Music Data Sharing Platform for Computational Musicology Research},
18
- month = {nov},
19
- year = {2021},
20
- publisher = {Zenodo},
21
- version = {1.1},
22
- doi = {10.5281/zenodo.5676893},
23
- url = {https://doi.org/10.5281/zenodo.5676893}
24
  }
25
  """
26
 
27
  _DESCRIPTION = """\
28
- This database contains 6 Mandarin song segments sung by 22 singers, totaling 132 audio clips.
29
- Each segment consists of a verse and a chorus. Four judges evaluate the singing from nine aspects
30
- which are pitch, rhythm, vocal range, timbre, pronunciation, vibrato, dynamic, breath control and
31
- overall performance on a 10-point scale. The scores are recorded in a sheet.
32
  """
33
 
34
- _URLS = {
35
- song: f"{_HOMEPAGE}/resolve/main/data/{song}.zip" for song in _NAMES['songs']}
36
 
37
 
38
  class acapella(datasets.GeneratorBasedBuilder):
@@ -40,8 +41,9 @@ class acapella(datasets.GeneratorBasedBuilder):
40
  return datasets.DatasetInfo(
41
  features=datasets.Features(
42
  {
43
- "song": datasets.Audio(sampling_rate=44_100),
44
- "singer_id": datasets.features.ClassLabel(names=_NAMES['singers']),
 
45
  "pitch": datasets.Value("float64"),
46
  "rhythm": datasets.Value("float64"),
47
  "vocal_range": datasets.Value("float64"),
@@ -53,7 +55,7 @@ class acapella(datasets.GeneratorBasedBuilder):
53
  "overall_performance": datasets.Value("float64"),
54
  }
55
  ),
56
- supervised_keys=("song", "singer_id"),
57
  homepage=_HOMEPAGE,
58
  license="mit",
59
  citation=_CITATION,
@@ -61,45 +63,77 @@ class acapella(datasets.GeneratorBasedBuilder):
61
  task_templates=[
62
  AudioClassification(
63
  task="audio-classification",
64
- audio_column="song",
65
  label_column="singer_id",
66
  )
67
  ],
68
  )
69
 
70
  def _split_generators(self, dl_manager):
71
- data_files = dl_manager.download_and_extract(_URLS)
72
- split_generator = []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
 
74
- for index in _URLS.keys():
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  split_generator.append(
76
  datasets.SplitGenerator(
77
- name=index,
78
- gen_kwargs={
79
- "files": dl_manager.iter_files([data_files[index]]),
80
- "labels": dl_manager.download(f"{_HOMEPAGE}/resolve/main/data/{index}.csv"),
81
- },
82
  )
83
  )
84
 
85
  return split_generator
86
 
87
- def _generate_examples(self, files, labels):
88
- song_eval = pd.read_csv(labels, index_col='singer_id')
89
  for i, path in enumerate(files):
90
- file_name = os.path.basename(path)
91
- if file_name.endswith(".wav"):
92
- id = int(file_name.split('(')[1].split(')')[0]) - 1
93
- yield i, {
94
- "song": path,
95
- "singer_id": id,
96
- "pitch": song_eval.iloc[id]['pitch'],
97
- "rhythm": song_eval.iloc[id]['rhythm'],
98
- "vocal_range": song_eval.iloc[id]['vocal_range'],
99
- "timbre": song_eval.iloc[id]['timbre'],
100
- "pronunciation": song_eval.iloc[id]['pronunciation'],
101
- "vibrato": song_eval.iloc[id]['vibrato'],
102
- "dynamic": song_eval.iloc[id]['dynamic'],
103
- "breath_control": song_eval.iloc[id]['breath_control'],
104
- "overall_performance": song_eval.iloc[id]['overall_performance'],
105
- }
 
5
 
6
 
7
  _NAMES = {
8
+ "songs": ["song" + str(i) for i in range(1, 7)],
9
+ "singers": ["singer" + str(i) for i in range(1, 23)],
10
  }
11
 
12
+ _DBNAME = os.path.basename(__file__).split(".")[0]
13
+
14
+ _DOMAIN = f"https://www.modelscope.cn/api/v1/datasets/ccmusic/{_DBNAME}/repo?Revision=master&FilePath=data"
15
+
16
+ _HOMEPAGE = f"https://www.modelscope.cn/datasets/ccmusic/{_DBNAME}"
17
 
18
  _CITATION = """\
19
  @dataset{zhaorui_liu_2021_5676893,
20
+ author = {Monan Zhou, Shenyang Xu, Zhaorui Liu, Zhaowen Wang, Feng Yu, Wei Li and Zijin Li},
21
+ title = {CCMusic: an Open and Diverse Database for Chinese and General Music Information Retrieval Research},
22
+ month = {mar},
23
+ year = {2024},
24
+ publisher = {HuggingFace},
25
+ version = {1.2},
26
+ url = {https://huggingface.co/ccmusic-database}
 
27
  }
28
  """
29
 
30
  _DESCRIPTION = """\
31
+ This raw dataset comprises six Mandarin pop song segments performed by 22 singers, resulting in a total of 132 audio clips. Each segment includes both a verse and a chorus. Four judges from the China Conservatory of Music assess the singing across nine dimensions: pitch, rhythm, vocal range, timbre, pronunciation, vibrato, dynamics, breath control, and overall performance, using a 10-point scale. The evaluations are recorded in an Excel spreadsheet in .xls format.
32
+
33
+ Due to the original dataset comprising separate files for audio recordings and evaluation sheets, which hindered efficient data retrieval, we have consolidated the raw vocal recordings with their corresponding assessments. The dataset is divided into six segments, each representing a different song, resulting in a total of six divisions. Each segment contains 22 entries, with each entry detailing the vocal recording of an individual singer sampled at 44,100 Hz, the singer's ID, and evaluations across the nine dimensions previously mentioned. Consequently, each entry encompasses 11 columns of data. This dataset is well-suited for tasks such as vocal analysis and regression-based singing voice rating. For instance, as previously stated, the final column of each entry denotes the overall performance score, allowing the audio to be utilized as data and this score to serve as the label for regression analysis.
 
34
  """
35
 
36
+ _URLS = {"audio": f"{_DOMAIN}/audio.zip", "mel": f"{_DOMAIN}/mel.zip"}
 
37
 
38
 
39
  class acapella(datasets.GeneratorBasedBuilder):
 
41
  return datasets.DatasetInfo(
42
  features=datasets.Features(
43
  {
44
+ "audio": datasets.Audio(sampling_rate=22050),
45
+ "mel": datasets.Image(),
46
+ "singer_id": datasets.features.ClassLabel(names=_NAMES["singers"]),
47
  "pitch": datasets.Value("float64"),
48
  "rhythm": datasets.Value("float64"),
49
  "vocal_range": datasets.Value("float64"),
 
55
  "overall_performance": datasets.Value("float64"),
56
  }
57
  ),
58
+ supervised_keys=("audio", "singer_id"),
59
  homepage=_HOMEPAGE,
60
  license="mit",
61
  citation=_CITATION,
 
63
  task_templates=[
64
  AudioClassification(
65
  task="audio-classification",
66
+ audio_column="audio",
67
  label_column="singer_id",
68
  )
69
  ],
70
  )
71
 
72
  def _split_generators(self, dl_manager):
73
+ songs = {}
74
+ for index in _NAMES["songs"]:
75
+ csv_files = dl_manager.download(f"{_DOMAIN}/{index}.csv")
76
+ song_eval = pd.read_csv(csv_files, index_col="singer_id")
77
+ scores = []
78
+ for id in range(22):
79
+ scores.append(
80
+ {
81
+ "pitch": song_eval.iloc[id]["pitch"],
82
+ "rhythm": song_eval.iloc[id]["rhythm"],
83
+ "vocal_range": song_eval.iloc[id]["vocal_range"],
84
+ "timbre": song_eval.iloc[id]["timbre"],
85
+ "pronunciation": song_eval.iloc[id]["pronunciation"],
86
+ "vibrato": song_eval.iloc[id]["vibrato"],
87
+ "dynamic": song_eval.iloc[id]["dynamic"],
88
+ "breath_control": song_eval.iloc[id]["breath_control"],
89
+ "overall_performance": song_eval.iloc[id][
90
+ "overall_performance"
91
+ ],
92
+ }
93
+ )
94
 
95
+ songs[index] = scores
96
+
97
+ audio_files = dl_manager.download_and_extract(_URLS["audio"])
98
+ for path in dl_manager.iter_files([audio_files]):
99
+ fname = os.path.basename(path)
100
+ if fname.endswith(".wav"):
101
+ song_id = os.path.basename(os.path.dirname(path))
102
+ singer_id = int(fname.split("(")[1].split(")")[0]) - 1
103
+ songs[song_id][singer_id]["audio"] = path
104
+
105
+ mel_files = dl_manager.download_and_extract(_URLS["mel"])
106
+ for path in dl_manager.iter_files([mel_files]):
107
+ fname = os.path.basename(path)
108
+ if fname.endswith(".jpg"):
109
+ song_id = os.path.basename(os.path.dirname(path))
110
+ singer_id = int(fname.split("(")[1].split(")")[0]) - 1
111
+ songs[song_id][singer_id]["mel"] = path
112
+
113
+ split_generator = []
114
+ for key in songs.keys():
115
  split_generator.append(
116
  datasets.SplitGenerator(
117
+ name=key,
118
+ gen_kwargs={"files": songs[key]},
 
 
 
119
  )
120
  )
121
 
122
  return split_generator
123
 
124
+ def _generate_examples(self, files):
 
125
  for i, path in enumerate(files):
126
+ yield i, {
127
+ "audio": path["audio"],
128
+ "mel": path["mel"],
129
+ "singer_id": i,
130
+ "pitch": path["pitch"],
131
+ "rhythm": path["rhythm"],
132
+ "vocal_range": path["vocal_range"],
133
+ "timbre": path["timbre"],
134
+ "pronunciation": path["pronunciation"],
135
+ "vibrato": path["vibrato"],
136
+ "dynamic": path["dynamic"],
137
+ "breath_control": path["breath_control"],
138
+ "overall_performance": path["overall_performance"],
139
+ }
 
 
data/{song3.zip → song1 (16).jpg} RENAMED
File without changes
data/{song1.zip → song1 (16).wav} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:654459126fc308a456d75911713ca3e2ca1b7ab37433fd00b5c78b0f5f7df8c2
3
- size 216567277
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10a37c78d5eaa49c0e637338195ec96ac63ba1cf155b8835908cf568ca8b76df
3
+ size 12642086
data/song1.csv DELETED
@@ -1,23 +0,0 @@
1
- singer_id,pitch,rhythm,vocal_range,timbre,pronunciation,vibrato,dynamic,breath_control,overall_performance
2
- 0,2,3.5,2.75,1.75,2.25,1.25,3,3.25,2.25
3
- 1,5,5.5,3.75,4.25,2,1.5,3.5,4,5
4
- 2,4.75,4.25,3,2.75,3.25,2.25,2.75,3.25,4.5
5
- 3,6.75,6.5,6,6.5,6,5,5.25,4.5,6
6
- 4,4,4.25,4.25,3,2,2,2.25,2.5,5.5
7
- 5,4.75,4.25,5,5.5,4.5,3.75,4.25,4.5,4.75
8
- 6,5.5,5.5,5,4.5,4.5,3.5,3.5,4.25,5.25
9
- 7,9,9.75,9.25,9.75,9.5,8.5,9.5,10,10
10
- 8,5.25,5,4.75,5,3,1.75,2.25,2.25,3.75
11
- 9,5,3.5,2.75,2.75,2,1.75,1.75,2,3.25
12
- 10,2.75,3,2.25,2.5,2,2,2.5,2.5,3
13
- 11,5.75,5,4.75,5,4.75,3,3,3,5
14
- 12,3.5,4,3.75,3.75,3.25,3.75,4,3.5,4
15
- 13,9.75,9.75,9.75,9,10,9.5,9.5,9.5,10
16
- 14,1.75,1.75,1.5,1.25,1.75,1.75,1.25,1,1.75
17
- 15,9.5,9,9.25,9.75,9.75,9.5,9.25,9.5,9.5
18
- 16,6.25,5,4.25,5,4.75,2.75,3,3.75,3.75
19
- 17,5.25,5,5.25,4.25,4.25,3.25,3.75,3.5,5.25
20
- 18,3.25,3,2.5,1.5,2,1.75,2.25,2.25,1.5
21
- 19,5,4.75,4.5,4.5,3.75,3,2.5,3,4.25
22
- 20,9.5,9.5,9.5,8.5,9.5,10,9.5,9.75,9.75
23
- 21,6.5,6.25,5.5,5.5,4.25,3,4.25,4.5,5.5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/song2.csv DELETED
@@ -1,23 +0,0 @@
1
- singer_id,pitch,rhythm,vocal_range,timbre,pronunciation,vibrato,dynamic,breath_control,overall_performance
2
- 0,1.5,2,1.5,1.75,2,1.5,1.25,1.75,1.5
3
- 1,4,4,4.5,3.25,2.5,1.75,2.25,1.5,3.25
4
- 2,4.75,3.75,2.75,2.75,2.25,2.25,2.25,2.25,3.25
5
- 3,5.5,5,5.25,5,5.25,5.5,4.75,4.75,5.25
6
- 4,4.5,4.25,3.5,3.25,3.75,4,2.5,3.25,4
7
- 5,5,4.25,4.5,5,4.5,3.5,4.75,3.75,4.25
8
- 6,5.5,5,4.75,4.75,4.75,4,2.75,3.5,4.5
9
- 7,10,10,10,10,9.75,9.5,9.75,9.75,10
10
- 8,5,4,4.5,4,4.75,3.25,4.25,3.75,5
11
- 9,4.5,3.5,3,3.25,2.5,2.5,2.5,2.75,4
12
- 10,2,2,1.75,1.25,1.5,2.25,2,1.75,2
13
- 11,5.25,4.75,4.25,3.75,3,2.75,3.25,3.25,4.75
14
- 12,3.75,4.5,2.75,3.75,3.75,3.75,3,4.75,4.5
15
- 13,9.75,9.75,9.5,9.25,10,10,10,9.5,10
16
- 14,1.25,1,1,1.25,1.25,1,1,1,1
17
- 15,10,9.75,9.75,9.5,9.5,10,10,10,9.5
18
- 16,5,5.5,6,5.5,4.5,2.75,3,4.25,5
19
- 17,5,5.25,5.75,5.5,4.75,4.25,3.5,3.5,5.25
20
- 18,1.75,2.5,1.5,1.5,2.5,2.5,2,2,2.75
21
- 19,3.75,3.75,3.75,4,4,3.75,3,3.25,3.5
22
- 20,9.75,9.5,9.25,9.75,10,9.25,9.75,9.5,9.5
23
- 21,5.5,5,6.25,5.75,5,5,5.5,4.5,5.5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/song2.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:11190cbcd30a2e2e071125c1fe088aec7402e04bc7335befaf53c4bad1bb5da2
3
- size 193964450
 
 
 
 
data/song3.csv DELETED
@@ -1,23 +0,0 @@
1
- singer_id,pitch,rhythm,vocal_range,timbre,pronunciation,vibrato,dynamic,breath_control,overall_performance
2
- 0,1.75,3,2,1.75,1.5,1,1.5,2.25,3
3
- 1,4,4,4.25,3.75,2.5,2.25,1.75,1.75,2.5
4
- 2,4.75,4,3,2.75,2.25,2,1.75,1.5,3
5
- 3,5.5,5.5,5.5,5,5.75,5.25,3.5,3.5,4.25
6
- 4,4.25,4,4,2.5,2.25,3,2.5,3,3.75
7
- 5,5,4.5,4.25,4.75,4.5,3,5,3.75,4.25
8
- 6,5.5,5.25,4.75,4.5,4.5,3.75,2.75,2.25,3.75
9
- 7,9.75,10,9.75,9.75,10,9.5,9.75,9.75,9.5
10
- 8,5,4.75,4.75,4.75,4.25,3.5,4,3.25,4.25
11
- 9,4,3.5,3,3.5,2.25,2,1.5,2,3.75
12
- 10,1.75,2.25,2.5,1.75,2.5,2.5,2,1.5,2.5
13
- 11,5.75,5.25,5,4.5,2.75,3,4,3.25,4.75
14
- 12,4.5,3.5,3,3.75,3.75,3,3.5,2.75,3.5
15
- 13,9.75,10,10,9.5,10,10,9,10,9.75
16
- 14,1.5,1,1,1,1,1,1,1,1.25
17
- 15,10,10,10,10,9.5,10,9.5,10,10
18
- 16,6.25,5,4.75,5,3.5,3.5,3.25,3.5,4.75
19
- 17,5.25,4.25,4.25,5,4.5,3.5,3.75,3,4.75
20
- 18,2.5,2.25,1.75,1.5,1.5,1.25,1.75,2,2.5
21
- 19,4,3.5,3.5,4,4,3.25,2.75,2,3.25
22
- 20,10,9.75,9.5,10,9.75,9.75,9.5,10,9.5
23
- 21,6,5.75,5.5,5.5,3.5,4.5,5.25,4,5.25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/song4.csv DELETED
@@ -1,23 +0,0 @@
1
- singer_id,pitch,rhythm,vocal_range,timbre,pronunciation,vibrato,dynamic,breath_control,overall_performance
2
- 0,1.5,2.75,2.5,2,1.5,1,1.5,2.25,2.25
3
- 1,4.75,5,5,6,5,3.25,3.75,3.5,5
4
- 2,4.25,3.25,3,2.25,2.5,3,1.75,1.25,3.5
5
- 3,5.5,6.25,4.75,4.25,5.75,5,4.5,4.5,5.75
6
- 4,4.25,4,3.25,3,1.75,1.75,2.25,1.75,4
7
- 5,4.25,4.75,4.75,4.5,3.75,4.25,4,3.75,4.75
8
- 6,6.25,5,4,4.25,4,2.25,2.5,2.75,5.25
9
- 7,10,9.75,10,10,9.5,9,10,10,9.75
10
- 8,5.5,4.5,4.25,4,3.5,1.5,3.5,3.5,4.5
11
- 9,4.25,3.5,3,2.25,1.5,1.5,1.75,2,2.75
12
- 10,2.25,2.25,1.5,1.5,2,2.25,2.25,1.75,2.5
13
- 11,6,6,5,4.25,4,3,3.25,3,4.75
14
- 12,3.5,4.25,3.5,4.25,4.5,3,2.75,3.25,4
15
- 13,9.5,10,10,9.5,9.75,9.75,9.75,9.75,9.75
16
- 14,1.75,1.25,1.75,1.25,1.5,1.25,1.25,1,1.75
17
- 15,9.25,10,9.5,9.75,9.25,9.25,9.5,9.75,9.75
18
- 16,6,5.75,4.25,5,6,4.25,3.25,5.75,6
19
- 17,5.75,5.5,5.25,5.25,4,3.5,4.25,4,5.5
20
- 18,2,2.25,2.5,2.5,2,2.5,2,1.75,1.5
21
- 19,3.75,4.25,3.75,4,2.25,3.5,2.25,2,3.75
22
- 20,9.5,10,9.75,9.5,10,9.5,9.75,9.75,10
23
- 21,5.75,6.25,6.25,5.75,4,4,4,4.25,6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/song4.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:0b0fe1c8cd4ffcb120b62248842982594c993530bff919bdcba9f6cf4597f8c5
3
- size 247331579
 
 
 
 
data/song5.csv DELETED
@@ -1,23 +0,0 @@
1
- singer_id,pitch,rhythm,vocal_range,timbre,pronunciation,vibrato,dynamic,breath_control,overall_performance
2
- 0,1.5,2.5,2.25,3.5,2,1.75,1.25,1.75,2.25
3
- 1,4.5,3.75,3.25,4.25,3.5,3.5,2.5,2.5,3.75
4
- 2,4.75,4,2.25,2.75,2.25,2.25,2.75,2.5,2.5
5
- 3,5.5,4.75,4.75,4.5,3.75,2.25,2.25,2.75,4.25
6
- 4,4.25,4,3,3.25,2.25,1.75,2.25,2.5,3
7
- 5,5.25,5,5.5,4.25,4,3.75,4.25,4,4.25
8
- 6,5.75,6,4.75,4,3.75,3.5,2.75,3.25,4.5
9
- 7,9.75,9.75,10,10,9.75,9.25,9.25,9.75,9.75
10
- 8,5,5,4.5,4.5,4,2.25,1.75,2.75,4.5
11
- 9,4,3.75,3.75,3.75,3,2.75,2,2,3.75
12
- 10,1.75,2,1.75,1.75,1.75,2,1.75,1.5,2.5
13
- 11,5.25,5,4.75,4.25,4,2.25,2.75,2,5
14
- 12,4.25,4,3,4,3.75,3,3.25,3.25,4.25
15
- 13,9.75,10,10,10,9.5,10,9.5,9.25,9.75
16
- 14,1.5,1.25,1,1,1,1.25,1.25,1.5,1.5
17
- 15,10,10,10,9.75,9.75,10,9.75,9.25,9.5
18
- 16,6.75,5.25,5.25,5,5,3.5,3.5,5.5,5.75
19
- 17,5,4,4.25,4.25,4.5,4.25,4.5,4,4.75
20
- 18,2.5,1.75,1.75,2.25,2.75,2.5,2,2,3
21
- 19,3.5,3.75,4,4.75,3.75,3,2.25,2,4.25
22
- 20,9.25,9.5,9.25,10,9.75,9.5,9.75,9.75,9.75
23
- 21,6.5,5.75,5.25,6,4.75,5.25,5.5,5.25,6.25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/song5.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:3e8a507bf49d4b43bbe7727bdee14281b114803b11fec79b977f48428d990ba6
3
- size 252415044
 
 
 
 
data/song6.csv DELETED
@@ -1,23 +0,0 @@
1
- singer_id,pitch,rhythm,vocal_range,timbre,pronunciation,vibrato,dynamic,breath_control,overall_performance
2
- 0,1.5,2.25,2.25,1.5,1.25,1.75,1.25,1.5,1.5
3
- 1,4,4.25,3.5,3.25,3.5,2.75,2.25,2,3.25
4
- 2,3.5,3.25,2,2,1.75,1.75,2.75,1.25,3.25
5
- 3,5,4.25,4.5,4,3.25,3.25,3.5,3.5,3.75
6
- 4,4.5,4,3,3,1,1.75,2.25,2.5,4
7
- 5,4.75,4,4.25,3.75,3.25,4,3.25,3.5,3.75
8
- 6,5.5,5.5,4.75,3.75,3.75,3.25,2.5,2.75,5.5
9
- 7,10,9.75,9.75,10,9.75,9.75,10,9.75,8.25
10
- 8,4.75,4.5,3.75,3.25,2,1.5,1.5,2,3.5
11
- 9,4,4,3.75,2.75,2,1.5,1.75,2,3.75
12
- 10,2.5,2.5,1.5,1.75,2.25,2.25,2,2,3.5
13
- 11,5.25,5.5,5.25,4.5,4.5,2.75,2.25,2.25,3.5
14
- 12,4,4.5,3.5,4,3.5,2.75,2.25,1.75,5.75
15
- 13,9.75,9.75,9.75,9.5,10,10,9.75,9.75,7.25
16
- 14,1.25,1,1.25,1,1,1,1.5,1,3.25
17
- 15,10,10,10,10,9,10,9.5,10,10
18
- 16,4.5,5.5,4.5,4.5,5.75,4.5,3.5,5.75,5
19
- 17,5.5,5.5,4.5,4.75,3.25,3,2.75,3.5,4.75
20
- 18,2.5,1.75,1.75,2.75,2.25,2.25,2,1.75,2
21
- 19,3.25,3.5,3.5,3.75,3.25,3,2.5,3,3.5
22
- 20,10,10,9.75,9.75,9.75,9.75,9.5,9.75,9.75
23
- 21,5.25,5.75,6.5,5.5,4.5,4.25,2.5,3.25,5.25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/song6.zip DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:08a8a67434336b8c57434e865255a0f85fa86c61499061225379e5cc344902a9
3
- size 201736609