Veronica1NW commited on
Commit
e1c5727
·
verified ·
1 Parent(s): e6ba474

update README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -2
README.md CHANGED
@@ -21,13 +21,81 @@ dataset_info:
21
  dtype: string
22
  splits:
23
  - name: train
24
- num_bytes: 275284152.0
25
  num_examples: 1500
26
  download_size: 263378447
27
- dataset_size: 275284152.0
28
  configs:
29
  - config_name: default
30
  data_files:
31
  - split: train
32
  path: data/train-*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  dtype: string
22
  splits:
23
  - name: train
24
+ num_bytes: 275284152
25
  num_examples: 1500
26
  download_size: 263378447
27
+ dataset_size: 275284152
28
  configs:
29
  - config_name: default
30
  data_files:
31
  - split: train
32
  path: data/train-*
33
+ license: cc0-1.0
34
+ task_categories:
35
+ - automatic-speech-recognition
36
+ language:
37
+ - sw
38
+ tags:
39
+ - swahili
40
+ - speech
41
+ - kenyan
42
+ - audio
43
+ - common-voice
44
+ - automatic-speech-recognition
45
+ pretty_name: 'Common Voice 17.0 (Swahili, Kenyan Sample) '
46
+ size_categories:
47
+ - 1K<n<10K
48
  ---
49
+
50
+ # Common Voice 17.0 — Swahili (Kenyan Sample)
51
+
52
+ This dataset is a **filtered sample** of the [Mozilla Common Voice 17.0](https://huggingface.co/datasets/mozilla-foundation/common_voice_17_0) corpus, focusing on **Swahili (sw)** speech with **Kenyan voices**.
53
+
54
+ It has been subsetted for experimentation and prototyping in **ASR (Automatic Speech Recognition)** models targeting **speech-impaired users** in Kenya, covering **Kenyan English** and **Kiswahili**.
55
+
56
+ ---
57
+
58
+ ## Dataset Summary
59
+
60
+ - **Language**: Kiswahili (Swahili, `sw`)
61
+ - **Accent/Region**: Kenyan speakers
62
+ - **Domain**: Conversational, general-purpose
63
+ - **Source**: Mozilla Common Voice v17.0
64
+ - **License**: CC0 1.0 (public domain)
65
+
66
+ This dataset contains audio files and their corresponding transcriptions.
67
+ Each entry includes:
68
+ - `audio`: Audio array & path
69
+ - `sentence`: Transcription text
70
+ - `gender`, `age`, `accent` (where available)
71
+
72
+ ---
73
+
74
+ ## Intended Use
75
+
76
+ This sample dataset is intended for:
77
+ - Training and fine-tuning **speech-to-text (ASR)** systems for Kiswahili
78
+ - Research on **Kenyan accents** in speech technology
79
+ - Prototyping models for **speech accessibility tools**
80
+
81
+ It is **not a full dataset**, but a filtered subset suitable for testing and demonstrations.
82
+
83
+ ---
84
+
85
+ ## Usage Example
86
+
87
+ ```python
88
+ from datasets import load_dataset
89
+
90
+ # Load dataset (requires auth if private)
91
+ ds = load_dataset("Veronica1NW/cv17_sw_kenyan_sample", use_auth_token=True)
92
+
93
+ print(ds)
94
+ print(ds["train"][0])
95
+
96
+ @misc{commonvoice,
97
+ title = {Mozilla Common Voice},
98
+ howpublished = {https://commonvoice.mozilla.org},
99
+ year = {2017--2025}
100
+ }
101
+