saattrupdan commited on
Commit
af7f7b7
1 Parent(s): ac8b211

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +83 -0
README.md CHANGED
@@ -61,4 +61,87 @@ configs:
61
  path: read_aloud/val-*
62
  - split: test
63
  path: read_aloud/test-*
 
 
 
 
 
 
 
 
 
64
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  path: read_aloud/val-*
62
  - split: test
63
  path: read_aloud/test-*
64
+ license: other
65
+ task_categories:
66
+ - automatic-speech-recognition
67
+ - audio-classification
68
+ language:
69
+ - da
70
+ pretty_name: CoRal
71
+ size_categories:
72
+ - 100K<n<1M
73
  ---
74
+
75
+ # CoRal: Danish Conversational and Read-aloud Dataset
76
+
77
+ ## Dataset Overview
78
+
79
+ **CoRal** is a comprehensive Automatic Speech Recognition (ASR) dataset designed to capture the diversity of the Danish language across various dialects, accents, genders, and age groups. The primary goal of the CoRal dataset is to provide a robust resource for training and evaluating ASR models that can understand and transcribe spoken Danish in all its variations.
80
+
81
+ ### Key Features
82
+
83
+ - **Dialect and Accent Diversity**: The dataset includes speech samples from all major Danish dialects as well as multiple accents, ensuring broad geographical coverage and the inclusion of regional linguistic features.
84
+ - **Gender Representation**: Both male and female speakers are well-represented, offering balanced gender diversity.
85
+ - **Age Range**: The dataset includes speakers from a wide range of age groups, providing a comprehensive resource for age-agnostic ASR model development.
86
+ - **High-Quality Audio**: All recordings are of high quality, ensuring that the dataset can be used for both training and evaluation of high-performance ASR models.
87
+
88
+ ## Data Fields
89
+
90
+ - `id_recording`: Unique identifier for the recording.
91
+ - `id_sentence`: Unique identifier for the text being read aloud.
92
+ - `id_speaker`: Unique identifier for each speaker.
93
+ - `text`: transcription of recording
94
+ - `dialect`: Dialect classification
95
+ - `gender`: Gender of the speaker (Male/Female/Non-binary).
96
+ - `age`: Age of the speaker (Integer)
97
+ - `country_birth`: Country of where speaker was born
98
+ - `location`: adress of recording place.
99
+ - `location_roomdim`: dimension of recording room.
100
+ - `noise_level`: Noise level in the room given in dB.
101
+ - `noise_type`: Noise exposed to the speaker while recording. Note the noise is not present in the audio (ingen/human/trafik).
102
+ - `validated`: Manual
103
+ validation state of the recording (approved, maybe, rejected, "null").
104
+ - `asr_validation_model`: Model id used for auto validation of the recodings.
105
+ - `asr_prediction`: ASR output prediction.
106
+ - `asr_wer`: Word error rate between `asr_prediction` and `text`
107
+ - `asr_cer`: Character error rate between `asr_prediction` and `text`
108
+
109
+ ## Usage
110
+
111
+ The CoRal dataset is ideal for training ASR models that need to generalise across different dialects and speaker demographics within the Danish language. Below is an example of how to load and use the dataset with Hugging Face's `datasets` library:
112
+
113
+ ```python
114
+ from datasets import load_dataset
115
+
116
+ # Load the Coral dataset
117
+ coral = load_dataset("alexandrainst/coral", "read_aloud")
118
+
119
+ # Example: Accessing an audio sample and its transcription
120
+ sample = coral['train'][0]
121
+ audio = sample['audio']
122
+ transcription = sample['text']
123
+
124
+ print(f"Audio: {audio['array']}")
125
+ print(f"Text: {transcription}")
126
+ ```
127
+
128
+ ## Example Applications
129
+ - ASR Model Training: Train robust ASR models that can handle dialectal variations and diverse speaker demographics in Danish.
130
+ - Dialect Studies: Analyse the linguistic features of different Danish dialects.
131
+
132
+ **Note** Speech Synthesis and Biometric Identification are not allowed using CoRal. For more information see [license](https://huggingface.co/datasets/alexandrainst/coral/blob/main/CoRal_Data_License_v0.2.txt) ad. 4
133
+
134
+ ## License
135
+ Custom license allowing commercial use with a few restrictions (speech synthesis and biometric identification). See [license](https://huggingface.co/datasets/alexandrainst/coral/blob/main/CoRal_Data_License_v0.2.txt).
136
+
137
+ ## Citation
138
+ We will submit a research paper soon, but until then, if you use the CoRal dataset in your research or development, please cite it as follows:
139
+
140
+ ```bibtex
141
+ @dataset{coral2024,
142
+ author = {Sif Bernstorff Lehmann, Dan Saattrup Nielsen, Simon Leminen Madsen, Anders Jess Pedersen, Torben Blach},
143
+ title = {CoRal: A Diverse Danish ASR Dataset Covering Dialects, Accents, Genders, and Age Groups},
144
+ year = {2024},
145
+ url = {https://hf.co/datasets/alexandrainst/coral},
146
+ }
147
+ ```