alaleye commited on
Commit
5a89961
·
verified ·
1 Parent(s): a11021e

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +104 -14
README.md CHANGED
@@ -1,10 +1,22 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: audio
5
- dtype:
6
- audio:
7
- sampling_rate: 16000
8
  - name: sentence
9
  dtype: string
10
  - name: speaker
@@ -13,18 +25,96 @@ dataset_info:
13
  dtype: float64
14
  splits:
15
  - name: train
16
- num_bytes: 661013497
17
  num_examples: 8234
18
  - name: test
19
- num_bytes: 167445425
20
  num_examples: 2168
21
- download_size: 828551284
22
- dataset_size: 828458922
23
- configs:
24
- - config_name: default
25
- data_files:
26
- - split: train
27
- path: data/train-*
28
- - split: test
29
- path: data/test-*
30
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - fon
4
+ license: cc-by-4.0
5
+ task_categories:
6
+ - automatic-speech-recognition
7
+ pretty_name: Fongbe ASR
8
+ size_categories:
9
+ - 1K<n<10K
10
+ tags:
11
+ - fongbe
12
+ - asr
13
+ - speech
14
+ - african-languages
15
+ - low-resource
16
  dataset_info:
17
  features:
18
  - name: audio
19
+ dtype: audio
 
 
20
  - name: sentence
21
  dtype: string
22
  - name: speaker
 
25
  dtype: float64
26
  splits:
27
  - name: train
 
28
  num_examples: 8234
29
  - name: test
 
30
  num_examples: 2168
 
 
 
 
 
 
 
 
 
31
  ---
32
+
33
+ # Fongbe ASR Dataset
34
+
35
+ Speech recognition dataset for **Fongbe** (fɔ̀ngbè), a Gbe language spoken by approximately 4.1 million people, primarily in Benin and Togo.
36
+
37
+ ## Dataset Description
38
+
39
+ This dataset contains read speech recordings in Fongbe with their transcriptions. It was originally collected by Fréjus A. A. Laleye and organized in the [pyFongbe](https://github.com/laleye/pyFongbe) repository.
40
+
41
+ ### Statistics
42
+
43
+ | Split | Samples | Duration | Speakers |
44
+ |-------|---------|----------|----------|
45
+ | train | 8,234 | ~5.7h | 23 |
46
+ | test | 2,168 | ~1.5h | 4 |
47
+ | **total** | **10,402** | **~7.2h** | **27** |
48
+
49
+ ### Audio Format
50
+
51
+ - Format: WAV (PCM 16-bit)
52
+ - Sample rate: 16,000 Hz
53
+ - Channels: mono
54
+
55
+ ## Usage
56
+
57
+ ```python
58
+ from datasets import load_dataset
59
+
60
+ ds = load_dataset("alaleye/fon")
61
+
62
+ # Access a sample
63
+ sample = ds["train"][0]
64
+ print(sample["sentence"]) # Fongbe transcription
65
+ print(sample["audio"]) # {'array': np.array(...), 'sampling_rate': 16000}
66
+ print(sample["speaker"]) # Speaker name
67
+ print(sample["duration"]) # Duration in seconds
68
+ ```
69
+
70
+ ### Streaming
71
+
72
+ ```python
73
+ ds = load_dataset("alaleye/fon", streaming=True)
74
+ for sample in ds["train"]:
75
+ print(sample["sentence"])
76
+ break
77
+ ```
78
+
79
+ ## Features
80
+
81
+ - `audio` (`Audio`): audio waveform sampled at 16kHz
82
+ - `sentence` (`string`): Fongbe transcription
83
+ - `speaker` (`string`): speaker identifier
84
+ - `duration` (`float64`): audio duration in seconds
85
+
86
+ ## Speakers
87
+
88
+ **Train set (23 speakers):** armandine, boris, davacan, denise, dolores, donald, emmanuel, eunice, hans, herman, inconnu, lorseque, mario, melissa, miguel, mikael, narcisse, nazer, osias, parisius, rose, sorel, stephanie
89
+
90
+ **Test set (4 speakers):** antoine, cyrielle, frejus, helmut
91
+
92
+ Train and test speakers are disjoint, ensuring speaker-independent evaluation.
93
+
94
+ ## Source
95
+
96
+ - **Repository:** [laleye/pyFongbe](https://github.com/laleye/pyFongbe)
97
+ - **Related project:** [ALFFA (African Languages in the Field: speech Fundamentals and Automation)](http://www.openslr.org/25/)
98
+
99
+ ## Citation
100
+
101
+ If you use this dataset, please cite:
102
+
103
+ ```bibtex
104
+ @inproceedings{laleye:hal-01436788,
105
+ TITLE = {{First Automatic Fongbe Continuous Speech Recognition System: Development of Acoustic Models and Language Models}},
106
+ AUTHOR = {Laleye, Fr{\'e}jus a A and Besacier, Laurent and Ezin, Eug{\`e}ne C and Motamed, Cina},
107
+ URL = {https://hal.science/hal-01436788},
108
+ BOOKTITLE = {{Proceedings of the Federated Conference on Computer Science and Information Systems}},
109
+ ADDRESS = {Gdansk, Poland},
110
+ VOLUME = {8},
111
+ PAGES = {477 - 482},
112
+ YEAR = {2016},
113
+ MONTH = Sep,
114
+ DOI = {10.15439/2016F153},
115
+ KEYWORDS = { corpus ; African languages ; Fongbe ; under-resourced languages ; automatic speech recognition (ASR)},
116
+ PDF = {https://hal.science/hal-01436788v1/file/153.pdf},
117
+ HAL_ID = {hal-01436788},
118
+ HAL_VERSION = {v1},
119
+ }
120
+ ```