Datasets:
Add soundfile instructions to the README.md
Browse files
README.md
CHANGED
@@ -41,7 +41,15 @@ The dataset comprises audio recordings featuring spontaneous speech from young S
|
|
41 |
The transcripts were prepared by a professional transcription service, and each recording was associated with detailed metadata, including school grade, recording conditions, and error annotations.
|
42 |
|
43 |
Access to the dataset is regulated to ensure the confidentiality and ethical use of the sensitive data.
|
44 |
-
To use the ChaLL dataset, you need to download it manually. Follow the instructions provided (**yet to be detailed**) for downloading the data. Once you have downloaded the files, please extract all files into a single folder.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
```python
|
47 |
from datasets import load_dataset
|
|
|
41 |
The transcripts were prepared by a professional transcription service, and each recording was associated with detailed metadata, including school grade, recording conditions, and error annotations.
|
42 |
|
43 |
Access to the dataset is regulated to ensure the confidentiality and ethical use of the sensitive data.
|
44 |
+
To use the ChaLL dataset, you need to download it manually. Follow the instructions provided (**yet to be detailed**) for downloading the data. Once you have downloaded the files, please extract all files into a single folder.
|
45 |
+
|
46 |
+
Examples in this dataset are generated using the `soundfile` library (for reading and chunking). To handle the audio data correctly, you need to install the soundfile library.
|
47 |
+
|
48 |
+
```shell
|
49 |
+
pip install soundfile
|
50 |
+
```
|
51 |
+
|
52 |
+
You can then load the dataset into your environment using the following command:
|
53 |
|
54 |
```python
|
55 |
from datasets import load_dataset
|