Professor commited on
Commit
47dbcd0
·
verified ·
1 Parent(s): 3038435

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +109 -0
README.md CHANGED
@@ -1,4 +1,19 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: audio
@@ -33,3 +48,97 @@ configs:
33
  - split: test
34
  path: data/test-*
35
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc0-1.0
3
+ language:
4
+ - fon
5
+ tags:
6
+ - audio
7
+ - automatic-speech-recognition
8
+ - speech
9
+ - low-resource
10
+ - alffa
11
+ - tone-preserved
12
+ pretty_name: Fongbe Speech Dataset (ALFFA + Zenodo)
13
+ task_categories:
14
+ - automatic-speech-recognition
15
+ size_categories:
16
+ - 10K<n<100K
17
  dataset_info:
18
  features:
19
  - name: audio
 
48
  - split: test
49
  path: data/test-*
50
  ---
51
+
52
+ # Fongbe Speech Dataset (Complete & Tone-Preserved)
53
+
54
+ ## Dataset Summary
55
+
56
+ This dataset is a unified, high-quality collection of Fongbe speech data, specifically curated to preserve the linguistic integrity of this tonal language. It acts as a complete, unsegmented, and tone-accurate assembly of the Fongbe Continuous Speech Recognition corpora, merging:
57
+
58
+ 1. The foundational **ALFFA Project** data (Train/Test splits, 2016).
59
+ 2. The expanded **Zenodo** release (Validation split, 2022).
60
+
61
+ ### Why Use This Version?
62
+
63
+ Several derivative Fongbe datasets currently on the Hub have been heavily pre-processed. Those versions often chunk audio into unnatural segments, remove punctuation, or strip critical tone diacritics.
64
+
65
+ **This repository ensures linguistic accuracy by preserving:**
66
+ * **Tones:** Retains all diacritics (e.g., `ɖ`, `ɛ`, `ɔ`, `è`, `é`, `ì`, `̌`, `̂`, `ĕ`, `ŏ`) essential for Fongbe semantics.
67
+ * **Audio Integrity:** Provides full-length original utterances rather than aggressively chopped segments, allowing for better context modeling.
68
+ * **Harmonized Schema:** Standardizes metadata across diverse source origins for immediate use in `transformers`.
69
+
70
+ ## Dataset Statistics
71
+
72
+ | Split | Utterances | Total Duration (approx) | Source |
73
+ | :--- | :--- | :--- | :--- |
74
+ | **Train** | 8,234 | ~5.73 hrs | ALFFA GitHub |
75
+ | **Validation** | 3,179 | ~5.11 hrs | Zenodo (6604637) |
76
+ | **Test** | 2,168 | ~1.45 hrs | ALFFA GitHub |
77
+ | **Total** | **13,581** | **~12.30 hrs** | |
78
+
79
+ ### Technical Metadata
80
+ - **Sampling Rate:** 16,000 Hz
81
+ - **Audio Format:** WAV (PCM 16-bit)
82
+ - **Language:** Fongbe (Fon)
83
+ - **Tonal Representation:** Decomposed (NFD) diacritics preserved.
84
+
85
+ ## Dataset Structure
86
+
87
+ All splits share a harmonized schema for seamless use with the Hugging Face `datasets` and `transformers` libraries.
88
+
89
+ ### Features
90
+ * `audio`: A dictionary containing the audio array, sampling rate (16kHz), and local path.
91
+ * `text`: The ground-truth transcription with full tonal markers and punctuation.
92
+ * `speaker ID`: The unique identifier for the speaker (e.g., `"denise"`, `"mario"`, `"5"`).
93
+ * `audio filename`: The original filename for provenance tracking.
94
+
95
+ ## Quick Start
96
+
97
+ You can load this dataset directly using the Hugging Face `datasets` library:
98
+
99
+ ```python
100
+ from datasets import load_dataset
101
+
102
+ # Load the full DatasetDict
103
+ dataset = load_dataset("Professor/fongbe-speech-zenodo")
104
+
105
+ # Access individual splits
106
+ train_data = dataset["train"]
107
+ validation_data = dataset["validation"]
108
+ test_data = dataset["test"]
109
+
110
+ # View a sample entry
111
+ print(train_data[0])
112
+ ```
113
+
114
+ ## Sources & Credits
115
+ This dataset is the result of extensive fieldwork and research by **Fréjus A. A. Laleye** and the **ALFFA (African Languages in the Field)** project team.
116
+
117
+ ### Citation Information
118
+ If you use this dataset, please cite the following works:
119
+
120
+ **For the Training/Test Data (ALFFA):**
121
+ ```bibtex
122
+ @inproceedings{laleye2016FongbeASR,
123
+ title={First Automatic Fongbe Continuous Speech Recognition System: Development of Acoustic Models and Language Models},
124
+ author={A. A Laleye, Fréjus and Besacier, Laurent and Ezin, Eugène C. and Motamed, Cina},
125
+ year={2016},
126
+ organization={Federated Conference on Computer Science and Information Systems}
127
+ }
128
+ ```
129
+
130
+ **For the Validation Data (Zenodo):**
131
+ ```bibtex
132
+ @dataset{laleye_frejus_2022_6604637,
133
+ author = {Laleye, Fréjus A. A.},
134
+ title = {Fongbe Speech Dataset},
135
+ month = jun,
136
+ year = 2022,
137
+ publisher = {Zenodo},
138
+ doi = {10.5281/zenodo.6604637},
139
+ url = {https://doi.org/10.5281/zenodo.6604637}
140
+ }
141
+ ```
142
+
143
+ ## Contributions
144
+ Ported to Hugging Face by **Victor Olufemi (Professor)**. This version ensures that low-resource language modeling for Fongbe remains linguistically accurate by preventing the loss of tonal information during preprocessing.