admin commited on
Commit
7c8c205
·
1 Parent(s): c1fab25
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -107,7 +107,7 @@ configs:
107
  # Dataset Card for Acapella Evaluation
108
  The original dataset, sourced from the [Acapella Evaluation Dataset](https://ccmusic-database.github.io/en/database/ccm.html#shou2), 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.
109
 
110
- Due to the original dataset comprising separate files for audio recordings and evaluation sheets, which hindered efficient data retrieval, we combined the original vocal recordings with their corresponding evaluation sheets to construct the [default subset](#usage) of the current integrated version of the dataset. The data structure can be viewed in the [viewer](https://www.modelscope.cn/datasets/ccmusic-database/acapella/dataPeview). The current dataset is already endorsed by published articles, hence there is no need to construct the eval subset.
111
 
112
  ## Dataset Structure
113
  <style>
@@ -157,13 +157,13 @@ Chinese, English
157
  ```python
158
  from datasets import load_dataset
159
 
160
- dataset = load_dataset(
161
  "ccmusic-database/acapella",
162
  name="default",
163
  cache_dir="./__pycache__",
164
  )
165
  for i in range(1, 7):
166
- for item in dataset[f"song{i}"]:
167
  print(item)
168
  ```
169
 
 
107
  # Dataset Card for Acapella Evaluation
108
  The original dataset, sourced from the [Acapella Evaluation Dataset](https://ccmusic-database.github.io/en/database/ccm.html#shou2), 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.
109
 
110
+ Due to the original dataset comprising separate files for audio recordings and evaluation sheets, which hindered efficient data retrieval, we combined the original vocal recordings with their corresponding evaluation sheets to construct the [default subset](#usage) of the current integrated version of the dataset. The data structure can be viewed in the [viewer](https://huggingface.co/datasets/ccmusic-database/acapella/viewer). The current dataset is already endorsed by published articles, hence there is no need to construct the eval subset.
111
 
112
  ## Dataset Structure
113
  <style>
 
157
  ```python
158
  from datasets import load_dataset
159
 
160
+ ds = load_dataset(
161
  "ccmusic-database/acapella",
162
  name="default",
163
  cache_dir="./__pycache__",
164
  )
165
  for i in range(1, 7):
166
+ for item in ds[f"song{i}"]:
167
  print(item)
168
  ```
169