Gabriel Baziramwabo commited on
Commit
cca335a
·
1 Parent(s): 0ef471b

Add dataset card (README.md)

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Kinyarwanda Spoken Words Dataset
2
+
3
+ This dataset contains 102 short audio samples of spoken Kinyarwanda words, each labeled with its corresponding transcription. It is designed for training, evaluating, and experimenting with Automatic Speech Recognition (ASR) models in low-resource settings.
4
+
5
+ ## Structure
6
+
7
+ - `audio/`: Contains 102 `.wav` files (mono, 16kHz)
8
+ - `transcripts.txt`: Tab-separated transcription file (e.g., `001.wav\tmuraho.`)
9
+ - `manifest.jsonl`: JSONL file with audio paths and text labels (compatible with 🤗 Datasets and Whisper training scripts)
10
+
11
+ ## Example
12
+
13
+ ```json
14
+ {"audio_filepath": "audio/001.wav", "text": "muraho."}
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ ```python
20
+ from datasets import load_dataset
21
+
22
+ ds = load_dataset("benax-rw/my_kinyarwanda_dataset", split="train")
23
+ example = ds[0]
24
+ print(example["audio"]["array"], example["text"])
25
+ ```
26
+
27
+ ## License
28
+
29
+ This dataset is published for educational and research purposes.
30
+
31
+ ## Citation
32
+
33
+ If you use this dataset, please cite:
34
+ > Baziramwabo Gabriel, KinyaWhisper Dataset for Fine-tuning Whisper on Kinyarwanda (2025)