benjaminogbonna commited on
Commit
cfc7aaf
·
verified ·
1 Parent(s): d307cb5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -53
README.md CHANGED
@@ -1,12 +1,19 @@
1
  ---
2
  license: apache-2.0
3
  task_categories:
4
- - automatic-speech-recognition
5
- - text-to-speech
 
 
 
6
  language:
7
  - en
8
  - af
9
  pretty_name: Nigerian Accent English Speech Data 1.0
 
 
 
 
10
  size_categories:
11
  - 1K<n<10K
12
  extra_gated_prompt: By clicking on “Access repository” below, you also agree to not
@@ -50,7 +57,7 @@ dataset_info:
50
  dataset_size: 125822627.008
51
  ---
52
 
53
- # Nigerian Accent English Speech Data 1.0
54
 
55
  ## Table of Contents
56
  - [Dataset Description](#dataset-description)
@@ -61,16 +68,10 @@ dataset_info:
61
  - [Data Fields](#data-fields)
62
  - [Data Splits](#data-splits)
63
  - [Dataset Creation](#dataset-creation)
64
- - [Curation Rationale](#curation-rationale)
65
- - [Source Data](#source-data)
66
- - [Annotations](#annotations)
67
  - [Personal and Sensitive Information](#personal-and-sensitive-information)
68
  - [Considerations for Using the Data](#considerations-for-using-the-data)
69
  - [Social Impact of Dataset](#social-impact-of-dataset)
70
- - [Discussion of Biases](#discussion-of-biases)
71
- - [Other Known Limitations](#other-known-limitations)
72
  - [Additional Information](#additional-information)
73
- - [Dataset Curators](#dataset-curators)
74
  - [Contributions](#contributions)
75
 
76
  ## Dataset Description
@@ -80,7 +81,7 @@ dataset_info:
80
 
81
  ### Dataset Summary
82
 
83
- The Nigerian Accent Speech Data is a comprehensive dataset of about eight hours of audio recordings featuring speakers from various regions of Nigeria,
84
  capturing the rich diversity of Nigerian accents. This dataset is specifically curated to address the gap in speech and language
85
  datasets for African accents, making it a valuable resource for researchers and developers working on Automatic Speech Recognition (ASR),
86
  Speech-to-text (STT), Text-to-Speech (TTS), Accent recognition, and Natural language processing (NLP) systems.
@@ -180,8 +181,7 @@ Thus it is important to first query the sample index before the "audio" column,
180
 
181
  ### Data Splits
182
 
183
- The speech material has been subdivided into portions for dev, train and test.
184
- The dev, test, train are all data that has been reviewed, deemed of high quality and split into dev, test and train.
185
 
186
  ## Data Preprocessing Recommended by Hugging Face
187
 
@@ -193,7 +193,7 @@ In addition, the majority of training sentences end in punctuation ( . or ? or !
193
 
194
  ```python
195
  from datasets import load_dataset
196
- ds = load_dataset("benjaminogbonna/nigerian_accented_english_dataset", use_auth_token=True)
197
  def prepare_dataset(batch):
198
  """Function to preprocess the dataset with the .map method"""
199
  transcription = batch["sentence"]
@@ -212,52 +212,12 @@ def prepare_dataset(batch):
212
  ds = ds.map(prepare_dataset, desc="preprocess dataset")
213
  ```
214
 
215
- ## Dataset Creation
216
-
217
- ### Curation Rationale
218
-
219
- [Needs More Information]
220
-
221
- ### Source Data
222
-
223
- #### Initial Data Collection and Normalization
224
-
225
- [Needs More Information]
226
-
227
- #### Who are the source language producers?
228
-
229
- [Needs More Information]
230
-
231
- ### Annotations
232
-
233
- #### Annotation process
234
-
235
- [Needs More Information]
236
-
237
- #### Who are the annotators?
238
-
239
- [Needs More Information]
240
-
241
  ### Personal and Sensitive Information
242
 
243
  The dataset consists of people who have donated their voice online. You agree to not attempt to determine the identity of speakers in the Common Voice dataset.
244
 
245
- ## Considerations for Using the Data
246
-
247
  ### Social Impact of Dataset
248
 
249
  The dataset consists of people who have donated their voice online. You agree to not attempt to determine the identity of speakers in the Common Voice dataset.
250
 
251
- ### Discussion of Biases
252
-
253
- [More Information Needed]
254
-
255
- ### Other Known Limitations
256
-
257
- [More Information Needed]
258
-
259
- ## Additional Information
260
-
261
  ### Contributions
262
-
263
- [More Information Needed]
 
1
  ---
2
  license: apache-2.0
3
  task_categories:
4
+ - automatic-speech-recognition (ASR)
5
+ - text-to-speech (TTS)
6
+ - speech-to-text (STT)
7
+ - Natural Language Processing (NLP)
8
+
9
  language:
10
  - en
11
  - af
12
  pretty_name: Nigerian Accent English Speech Data 1.0
13
+ annotations_creators:
14
+ - crowdsourced
15
+ language_creators:
16
+ - crowdsourced
17
  size_categories:
18
  - 1K<n<10K
19
  extra_gated_prompt: By clicking on “Access repository” below, you also agree to not
 
57
  dataset_size: 125822627.008
58
  ---
59
 
60
+ # Dataset Card for Nigerian Accent English Speech Data 1.0
61
 
62
  ## Table of Contents
63
  - [Dataset Description](#dataset-description)
 
68
  - [Data Fields](#data-fields)
69
  - [Data Splits](#data-splits)
70
  - [Dataset Creation](#dataset-creation)
 
 
 
71
  - [Personal and Sensitive Information](#personal-and-sensitive-information)
72
  - [Considerations for Using the Data](#considerations-for-using-the-data)
73
  - [Social Impact of Dataset](#social-impact-of-dataset)
 
 
74
  - [Additional Information](#additional-information)
 
75
  - [Contributions](#contributions)
76
 
77
  ## Dataset Description
 
81
 
82
  ### Dataset Summary
83
 
84
+ The Nigerian Accent Speech Data is a comprehensive dataset of about 8 hours of audio recordings featuring speakers from various regions of Nigeria,
85
  capturing the rich diversity of Nigerian accents. This dataset is specifically curated to address the gap in speech and language
86
  datasets for African accents, making it a valuable resource for researchers and developers working on Automatic Speech Recognition (ASR),
87
  Speech-to-text (STT), Text-to-Speech (TTS), Accent recognition, and Natural language processing (NLP) systems.
 
181
 
182
  ### Data Splits
183
 
184
+ The dataset has been subdivided into portions for dev, train and test.
 
185
 
186
  ## Data Preprocessing Recommended by Hugging Face
187
 
 
193
 
194
  ```python
195
  from datasets import load_dataset
196
+ ds = load_dataset("benjaminogbonna/nigerian_accented_english_dataset")
197
  def prepare_dataset(batch):
198
  """Function to preprocess the dataset with the .map method"""
199
  transcription = batch["sentence"]
 
212
  ds = ds.map(prepare_dataset, desc="preprocess dataset")
213
  ```
214
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
  ### Personal and Sensitive Information
216
 
217
  The dataset consists of people who have donated their voice online. You agree to not attempt to determine the identity of speakers in the Common Voice dataset.
218
 
 
 
219
  ### Social Impact of Dataset
220
 
221
  The dataset consists of people who have donated their voice online. You agree to not attempt to determine the identity of speakers in the Common Voice dataset.
222
 
 
 
 
 
 
 
 
 
 
 
223
  ### Contributions