cesear64 commited on
Commit
09b09d1
·
verified ·
1 Parent(s): 626b9b2

v1.1.0: deduplicate vocabulary (769→611 unique words), add grammar_rules.json (13 rules)

Browse files
Files changed (5) hide show
  1. README.md +222 -222
  2. dataset_card.md +222 -226
  3. grammar_rules.json +205 -0
  4. metadata.json +38 -32
  5. vocabulary.jsonl +0 -0
README.md CHANGED
@@ -1,222 +1,222 @@
1
- ---
2
- language:
3
- - sg
4
- - fr
5
- - en
6
- license: cc-by-sa-4.0
7
- task_categories:
8
- - translation
9
- - text-classification
10
- - token-classification
11
- task_ids:
12
- - language-modeling
13
- - multi-class-classification
14
- pretty_name: Sango Vocabulary Dataset
15
- size_categories:
16
- - 1K-10K
17
- tags:
18
- - sango
19
- - central-african-republic
20
- - low-resource-languages
21
- - african-languages
22
- - language-preservation
23
- - trilingual
24
- - vocabulary
25
- - dictionary
26
- configs:
27
- - config_name: vocabulary
28
- data_files:
29
- - split: train
30
- path: vocabulary.jsonl
31
- - config_name: training_pairs
32
- data_files:
33
- - split: train
34
- path: training_pairs.jsonl
35
- ---
36
-
37
- # Sango Vocabulary Dataset
38
-
39
- ## Dataset Description
40
-
41
- The first structured digital vocabulary dataset for **Sango** (ISO 639-1: `sg`, ISO 639-3: `sag`), the national and most widely spoken language of the **Central African Republic**. Sango is a creole language with over 5 million speakers, yet it remains severely underrepresented in NLP research and digital resources.
42
-
43
- This dataset provides trilingual vocabulary entries (Sango-French-English) with pronunciation guides and semantic categorization, along with Sango-French translation pairs extracted from grammar and dictionary references.
44
-
45
- ### Supported Tasks
46
-
47
- - **Machine Translation**: Sango-French and Sango-English translation
48
- - **Language Modeling**: Pre-training or fine-tuning language models for Sango
49
- - **Cross-lingual Transfer**: Leveraging French/English representations for Sango NLP
50
- - **Language Documentation**: Digital preservation of Sango vocabulary and usage patterns
51
- - **Educational Technology**: Building language learning applications for Sango
52
-
53
- ### Languages
54
-
55
- | Language | ISO 639-1 | ISO 639-3 | Role |
56
- | -------- | --------- | --------- | ------------------------- |
57
- | Sango | sg | sag | Primary target language |
58
- | French | fr | fra | Primary bridge language |
59
- | English | en | eng | Secondary bridge language |
60
-
61
- ## Dataset Structure
62
-
63
- ### Vocabulary (`vocabulary.jsonl`)
64
-
65
- 431 trilingual vocabulary entries, each containing:
66
-
67
- | Field | Type | Description | Coverage |
68
- | ----------------- | ------ | ----------------------------- | -------- |
69
- | `sango` | string | Sango word or phrase | 100% |
70
- | `french` | string | French translation | 100% |
71
- | `english` | string | English translation | 100% |
72
- | `category` | string | Semantic/grammatical category | 100% |
73
- | `difficulty` | string | Learning difficulty level | 100% |
74
- | `pronunciation` | string | Phonetic pronunciation guide | 100% |
75
- | `example_sango` | string | Example sentence in Sango | <1% |
76
- | `example_french` | string | Example sentence in French | <1% |
77
- | `example_english` | string | Example sentence in English | <1% |
78
-
79
- **Example entry:**
80
-
81
- ```json
82
- {
83
- "sango": "Bara âla",
84
- "french": "Bonjour",
85
- "english": "Hello",
86
- "category": "greetings",
87
- "difficulty": "beginner",
88
- "pronunciation": "BAH-rah AH-lah",
89
- "example_sango": "Bara âla, tongana nye?",
90
- "example_french": "Bonjour, comment allez-vous?",
91
- "example_english": "Hello, how are you?"
92
- }
93
- ```
94
-
95
- ### Training Pairs (`training_pairs.jsonl`)
96
-
97
- 360 Sango-French translation pairs extracted from grammar and dictionary reference materials.
98
-
99
- | Field | Type | Description |
100
- | ------------- | ------ | ----------------------------------- |
101
- | `source_lang` | string | Source language code (`sg` or `fr`) |
102
- | `target_lang` | string | Target language code (`sg` or `fr`) |
103
- | `source` | string | Source text |
104
- | `target` | string | Target text |
105
-
106
- **Note on quality**: These pairs were extracted from a Sango grammar reference book. While many entries contain genuine Sango-French translations and vocabulary definitions, some are sentence fragments or contextual excerpts from the source material. Users should apply filtering for downstream tasks that require clean parallel sentences.
107
-
108
- **Example entry:**
109
-
110
- ```json
111
- {
112
- "source_lang": "sg",
113
- "target_lang": "fr",
114
- "source": "Mbï yê Bêafrîka mîngi",
115
- "target": "j'aime beaucoup la Centrafrique"
116
- }
117
- ```
118
-
119
- ### Category Distribution
120
-
121
- The vocabulary spans 25 semantic categories:
122
-
123
- | Category | Count | Category | Count |
124
- | --------- | ----- | ----------- | ----- |
125
- | nature | 30 | professions | 30 |
126
- | clothing | 25 | commerce | 25 |
127
- | education | 25 | health | 25 |
128
- | home | 25 | adjectives | 20 |
129
- | numbers | 20 | technology | 20 |
130
- | transport | 20 | verbs | 18 |
131
- | animals | 15 | emotions | 15 |
132
- | greetings | 15 | body | 10 |
133
- | colors | 10 | essential | 10 |
134
- | actions | 10 | food | 12 |
135
- | family | 12 | places | 12 |
136
- | time | 10 | weather | 10 |
137
- | questions | 7 | | |
138
-
139
- ### Difficulty Distribution
140
-
141
- | Level | Count | Percentage |
142
- | ------------ | ----- | ---------- |
143
- | Beginner | 210 | 48.7% |
144
- | Intermediate | 200 | 46.4% |
145
- | Advanced | 21 | 4.9% |
146
-
147
- ## Dataset Creation
148
-
149
- ### Source Data
150
-
151
- - **Vocabulary entries**: Curated by MEYNG from Sango language learning resources including japprendslesango.com and verified Sango vocabulary references
152
- - **Training pairs**: Extracted from a comprehensive Sango grammar and dictionary reference work
153
- - **Verification**: Entries reviewed against known Sango linguistic sources
154
-
155
- ### Annotation Process
156
-
157
- Vocabulary entries were structured and categorized by native speakers and linguists familiar with Sango. Pronunciation guides use an English-approximation phonetic system designed for learners.
158
-
159
- ## Considerations for Using the Data
160
-
161
- ### Known Limitations
162
-
163
- 1. **Dataset size**: This is a static curated release of **431 vocabulary entries** (with pronunciation guides and semantic categorization) and **360 translation pairs**, published April 2026. The live [SangoAI API](https://sangoai.sbs) manages 769+ actively-maintained entries in DynamoDB, but those entries lack the per-entry pronunciation guides and example sentences present here. Future dataset versions will incorporate the expanded live vocabulary.
164
- 2. **Training pair quality**: The translation pairs contain some fragmented text from the source material. Filtering is recommended for tasks requiring clean parallel data.
165
- 3. **Example sentences**: Only 1 vocabulary entry includes example sentences. Future versions aim to add examples for all entries.
166
- 4. **Dialect coverage**: Sango has regional variations. This dataset primarily represents the standardized Sango used in Bangui (the capital).
167
- 5. **Pronunciation guides**: The phonetic guides approximate Sango sounds using English phonetics. They are intended for learners, not for phonological research.
168
-
169
- ### Recommendations
170
-
171
- - Use as a seed dataset to bootstrap Sango NLP systems
172
- - Combine with the SangoAI API (769+ words available at `https://sangoai.sbs`) for a larger vocabulary
173
- - Apply quality filtering on `training_pairs.jsonl` before fine-tuning
174
- - Consider data augmentation techniques for downstream tasks
175
-
176
- ## Citation
177
-
178
- If you use this dataset in your research, please cite:
179
-
180
- ```bibtex
181
- @dataset{meyng_sango_vocabulary_2026,
182
- title={Sango Vocabulary Dataset: A Trilingual Lexical Resource for an Underrepresented African Language},
183
- author={MEYNG},
184
- year={2026},
185
- url={https://huggingface.co/datasets/meyng/sango-vocabulary},
186
- license={CC-BY-SA-4.0},
187
- language={sg, fr, en}
188
- }
189
- ```
190
-
191
- ## License
192
-
193
- This dataset is released under the [Creative Commons Attribution-ShareAlike 4.0 International License (CC-BY-SA-4.0)](https://creativecommons.org/licenses/by-sa/4.0/).
194
-
195
- You are free to:
196
-
197
- - **Share** -- copy and redistribute the material in any medium or format
198
- - **Adapt** -- remix, transform, and build upon the material for any purpose, including commercial
199
-
200
- Under the following terms:
201
-
202
- - **Attribution** -- You must give appropriate credit to MEYNG, provide a link to the license, and indicate if changes were made
203
- - **ShareAlike** -- If you remix, transform, or build upon the material, you must distribute your contributions under the same license
204
-
205
- ## Acknowledgments
206
-
207
- This dataset was created by **[MEYNG](https://meyng.com)** as part of the **[SangoAI](https://sangoai.sbs)** project, an AI-powered language platform dedicated to the preservation and digitization of Sango.
208
-
209
- We acknowledge:
210
-
211
- - The people of the **Central African Republic**, whose language and culture this dataset aims to preserve and promote
212
- - The Sango-speaking community worldwide for their contributions to language documentation
213
- - The creators of **japprendslesango.com** and other Sango learning resources that informed this work
214
- - The open-source NLP community working on low-resource African languages
215
-
216
- ## Contact
217
-
218
- - **Organization**: MEYNG
219
- - **Website**: [meyng.com](https://meyng.com)
220
- - **Platform**: [sangoai.sbs](https://sangoai.sbs)
221
- - **Email**: contact@meyng.com
222
- - **GitHub**: [github.com/meyng-hub/sangoai](https://github.com/meyng-hub/sangoai)
 
1
+ ---
2
+ language:
3
+ - sg
4
+ - fr
5
+ - en
6
+ license: cc-by-sa-4.0
7
+ task_categories:
8
+ - translation
9
+ - text-classification
10
+ - token-classification
11
+ task_ids:
12
+ - language-modeling
13
+ - multi-class-classification
14
+ pretty_name: Sango Vocabulary Dataset
15
+ size_categories:
16
+ - 1K-10K
17
+ tags:
18
+ - sango
19
+ - central-african-republic
20
+ - low-resource-languages
21
+ - african-languages
22
+ - language-preservation
23
+ - trilingual
24
+ - vocabulary
25
+ - dictionary
26
+ configs:
27
+ - config_name: vocabulary
28
+ data_files:
29
+ - split: train
30
+ path: vocabulary.jsonl
31
+ - config_name: training_pairs
32
+ data_files:
33
+ - split: train
34
+ path: training_pairs.jsonl
35
+ ---
36
+
37
+ # Sango Vocabulary Dataset
38
+
39
+ ## Dataset Description
40
+
41
+ The first structured digital vocabulary dataset for **Sango** (ISO 639-1: `sg`, ISO 639-3: `sag`), the national and most widely spoken language of the **Central African Republic**. Sango is a creole language with over 5 million speakers, yet it remains severely underrepresented in NLP research and digital resources.
42
+
43
+ This dataset provides trilingual vocabulary entries (Sango-French-English) with pronunciation guides and semantic categorization, along with Sango-French translation pairs extracted from grammar and dictionary references.
44
+
45
+ ### Supported Tasks
46
+
47
+ - **Machine Translation**: Sango-French and Sango-English translation
48
+ - **Language Modeling**: Pre-training or fine-tuning language models for Sango
49
+ - **Cross-lingual Transfer**: Leveraging French/English representations for Sango NLP
50
+ - **Language Documentation**: Digital preservation of Sango vocabulary and usage patterns
51
+ - **Educational Technology**: Building language learning applications for Sango
52
+
53
+ ### Languages
54
+
55
+ | Language | ISO 639-1 | ISO 639-3 | Role |
56
+ | -------- | --------- | --------- | ------------------------- |
57
+ | Sango | sg | sag | Primary target language |
58
+ | French | fr | fra | Primary bridge language |
59
+ | English | en | eng | Secondary bridge language |
60
+
61
+ ## Dataset Structure
62
+
63
+ ### Vocabulary (`vocabulary.jsonl`)
64
+
65
+ 431 trilingual vocabulary entries, each containing:
66
+
67
+ | Field | Type | Description | Coverage |
68
+ | ----------------- | ------ | ----------------------------- | -------- |
69
+ | `sango` | string | Sango word or phrase | 100% |
70
+ | `french` | string | French translation | 100% |
71
+ | `english` | string | English translation | 100% |
72
+ | `category` | string | Semantic/grammatical category | 100% |
73
+ | `difficulty` | string | Learning difficulty level | 100% |
74
+ | `pronunciation` | string | Phonetic pronunciation guide | 100% |
75
+ | `example_sango` | string | Example sentence in Sango | <1% |
76
+ | `example_french` | string | Example sentence in French | <1% |
77
+ | `example_english` | string | Example sentence in English | <1% |
78
+
79
+ **Example entry:**
80
+
81
+ ```json
82
+ {
83
+ "sango": "Bara âla",
84
+ "french": "Bonjour",
85
+ "english": "Hello",
86
+ "category": "greetings",
87
+ "difficulty": "beginner",
88
+ "pronunciation": "BAH-rah AH-lah",
89
+ "example_sango": "Bara âla, tongana nye?",
90
+ "example_french": "Bonjour, comment allez-vous?",
91
+ "example_english": "Hello, how are you?"
92
+ }
93
+ ```
94
+
95
+ ### Training Pairs (`training_pairs.jsonl`)
96
+
97
+ 360 Sango-French translation pairs extracted from grammar and dictionary reference materials.
98
+
99
+ | Field | Type | Description |
100
+ | ------------- | ------ | ----------------------------------- |
101
+ | `source_lang` | string | Source language code (`sg` or `fr`) |
102
+ | `target_lang` | string | Target language code (`sg` or `fr`) |
103
+ | `source` | string | Source text |
104
+ | `target` | string | Target text |
105
+
106
+ **Note on quality**: These pairs were extracted from a Sango grammar reference book. While many entries contain genuine Sango-French translations and vocabulary definitions, some are sentence fragments or contextual excerpts from the source material. Users should apply filtering for downstream tasks that require clean parallel sentences.
107
+
108
+ **Example entry:**
109
+
110
+ ```json
111
+ {
112
+ "source_lang": "sg",
113
+ "target_lang": "fr",
114
+ "source": "Mbï yê Bêafrîka mîngi",
115
+ "target": "j'aime beaucoup la Centrafrique"
116
+ }
117
+ ```
118
+
119
+ ### Category Distribution
120
+
121
+ The vocabulary spans 25 semantic categories:
122
+
123
+ | Category | Count | Category | Count |
124
+ | --------- | ----- | ----------- | ----- |
125
+ | nature | 30 | professions | 30 |
126
+ | clothing | 25 | commerce | 25 |
127
+ | education | 25 | health | 25 |
128
+ | home | 25 | adjectives | 20 |
129
+ | numbers | 20 | technology | 20 |
130
+ | transport | 20 | verbs | 18 |
131
+ | animals | 15 | emotions | 15 |
132
+ | greetings | 15 | body | 10 |
133
+ | colors | 10 | essential | 10 |
134
+ | actions | 10 | food | 12 |
135
+ | family | 12 | places | 12 |
136
+ | time | 10 | weather | 10 |
137
+ | questions | 7 | | |
138
+
139
+ ### Difficulty Distribution
140
+
141
+ | Level | Count | Percentage |
142
+ | ------------ | ----- | ---------- |
143
+ | Beginner | 210 | 48.7% |
144
+ | Intermediate | 200 | 46.4% |
145
+ | Advanced | 21 | 4.9% |
146
+
147
+ ## Dataset Creation
148
+
149
+ ### Source Data
150
+
151
+ - **Vocabulary entries**: Curated by MEYNG from Sango language learning resources including japprendslesango.com and verified Sango vocabulary references
152
+ - **Training pairs**: Extracted from a comprehensive Sango grammar and dictionary reference work
153
+ - **Verification**: Entries reviewed against known Sango linguistic sources
154
+
155
+ ### Annotation Process
156
+
157
+ Vocabulary entries were structured and categorized by native speakers and linguists familiar with Sango. Pronunciation guides use an English-approximation phonetic system designed for learners.
158
+
159
+ ## Considerations for Using the Data
160
+
161
+ ### Known Limitations
162
+
163
+ 1. **Dataset size**: This release contains **611 deduplicated vocabulary entries** (v1.1.0, May 2026) and **360 translation pairs**. The vocabulary was deduplicated from 769 raw entries 126 true duplicate groups (same Sango+French+English from different CSV import batches) were removed, leaving 611 unique words. Also includes `grammar_rules.json` with 13 structured Sango grammar rules.
164
+ 2. **Training pair quality**: The translation pairs contain some fragmented text from the source material. Filtering is recommended for tasks requiring clean parallel data.
165
+ 3. **Example sentences**: Only 1 vocabulary entry includes example sentences. Future versions aim to add examples for all entries.
166
+ 4. **Dialect coverage**: Sango has regional variations. This dataset primarily represents the standardized Sango used in Bangui (the capital).
167
+ 5. **Pronunciation guides**: The phonetic guides approximate Sango sounds using English phonetics. They are intended for learners, not for phonological research.
168
+
169
+ ### Recommendations
170
+
171
+ - Use as a seed dataset to bootstrap Sango NLP systems
172
+ - Access the full 611-word dataset directly via the SangoAI API at `https://sangoai.sbs`
173
+ - Apply quality filtering on `training_pairs.jsonl` before fine-tuning
174
+ - Consider data augmentation techniques for downstream tasks
175
+
176
+ ## Citation
177
+
178
+ If you use this dataset in your research, please cite:
179
+
180
+ ```bibtex
181
+ @dataset{meyng_sango_vocabulary_2026,
182
+ title={Sango Vocabulary Dataset: A Trilingual Lexical Resource for an Underrepresented African Language},
183
+ author={MEYNG},
184
+ year={2026},
185
+ url={https://huggingface.co/datasets/meyng/sango-vocabulary},
186
+ license={CC-BY-SA-4.0},
187
+ language={sg, fr, en}
188
+ }
189
+ ```
190
+
191
+ ## License
192
+
193
+ This dataset is released under the [Creative Commons Attribution-ShareAlike 4.0 International License (CC-BY-SA-4.0)](https://creativecommons.org/licenses/by-sa/4.0/).
194
+
195
+ You are free to:
196
+
197
+ - **Share** -- copy and redistribute the material in any medium or format
198
+ - **Adapt** -- remix, transform, and build upon the material for any purpose, including commercial
199
+
200
+ Under the following terms:
201
+
202
+ - **Attribution** -- You must give appropriate credit to MEYNG, provide a link to the license, and indicate if changes were made
203
+ - **ShareAlike** -- If you remix, transform, or build upon the material, you must distribute your contributions under the same license
204
+
205
+ ## Acknowledgments
206
+
207
+ This dataset was created by **[MEYNG](https://meyng.com)** as part of the **[SangoAI](https://sangoai.sbs)** project, an AI-powered language platform dedicated to the preservation and digitization of Sango.
208
+
209
+ We acknowledge:
210
+
211
+ - The people of the **Central African Republic**, whose language and culture this dataset aims to preserve and promote
212
+ - The Sango-speaking community worldwide for their contributions to language documentation
213
+ - The creators of **japprendslesango.com** and other Sango learning resources that informed this work
214
+ - The open-source NLP community working on low-resource African languages
215
+
216
+ ## Contact
217
+
218
+ - **Organization**: MEYNG
219
+ - **Website**: [meyng.com](https://meyng.com)
220
+ - **Platform**: [sangoai.sbs](https://sangoai.sbs)
221
+ - **Email**: contact@meyng.com
222
+ - **GitHub**: [github.com/meyng-hub/sangoai](https://github.com/meyng-hub/sangoai)
dataset_card.md CHANGED
@@ -1,226 +1,222 @@
1
- ---
2
- language:
3
- - sg
4
- - fr
5
- - en
6
- license: cc-by-sa-4.0
7
- task_categories:
8
- - translation
9
- - text-classification
10
- - token-classification
11
- task_ids:
12
- - language-modeling
13
- - multi-class-classification
14
- pretty_name: Sango Vocabulary Dataset
15
- size_categories:
16
- - 1K-10K
17
- tags:
18
- - sango
19
- - central-african-republic
20
- - low-resource-languages
21
- - african-languages
22
- - language-preservation
23
- - trilingual
24
- - vocabulary
25
- - dictionary
26
- configs:
27
- - config_name: vocabulary
28
- data_files:
29
- - split: train
30
- path: vocabulary.jsonl
31
- - config_name: training_pairs
32
- data_files:
33
- - split: train
34
- path: training_pairs.jsonl
35
- ---
36
-
37
- # Sango Vocabulary Dataset
38
-
39
- ## Dataset Description
40
-
41
- The first structured digital vocabulary dataset for **Sango** (ISO 639-1: `sg`, ISO 639-3: `sag`), the national and most widely spoken language of the **Central African Republic**. Sango is a creole language with over 5 million speakers, yet it remains severely underrepresented in NLP research and digital resources.
42
-
43
- This dataset provides trilingual vocabulary entries (Sango-French-English) with pronunciation guides and semantic categorization, along with Sango-French translation pairs extracted from grammar and dictionary references.
44
-
45
- ### Supported Tasks
46
-
47
- - **Machine Translation**: Sango-French and Sango-English translation
48
- - **Language Modeling**: Pre-training or fine-tuning language models for Sango
49
- - **Cross-lingual Transfer**: Leveraging French/English representations for Sango NLP
50
- - **Language Documentation**: Digital preservation of Sango vocabulary and usage patterns
51
- - **Educational Technology**: Building language learning applications for Sango
52
-
53
- ### Languages
54
-
55
- | Language | ISO 639-1 | ISO 639-3 | Role |
56
- | -------- | --------- | --------- | ------------------------- |
57
- | Sango | sg | sag | Primary target language |
58
- | French | fr | fra | Primary bridge language |
59
- | English | en | eng | Secondary bridge language |
60
-
61
- ## Dataset Structure
62
-
63
- ### Vocabulary (`vocabulary.jsonl`)
64
-
65
- 740 trilingual vocabulary entries, each containing:
66
-
67
- | Field | Type | Description | Coverage |
68
- | ----------------- | ------ | ----------------------------- | -------- |
69
- | `sango` | string | Sango word or phrase | 100% |
70
- | `french` | string | French translation | 100% |
71
- | `english` | string | English translation | ~95% |
72
- | `category` | string | Semantic/grammatical category | 100% |
73
- | `difficulty` | string | Learning difficulty level | 100% |
74
- | `pronunciation` | string | Phonetic pronunciation guide | 0% |
75
- | `example_sango` | string | Example sentence in Sango | 0% |
76
- | `example_french` | string | Example sentence in French | 0% |
77
- | `example_english` | string | Example sentence in English | 0% |
78
-
79
- **Example entry:**
80
-
81
- ```json
82
- {
83
- "sango": "Bara âla",
84
- "french": "Bonjour",
85
- "english": "Hello",
86
- "category": "greetings",
87
- "difficulty": "beginner",
88
- "pronunciation": "BAH-rah AH-lah",
89
- "example_sango": "Bara âla, tongana nye?",
90
- "example_french": "Bonjour, comment allez-vous?",
91
- "example_english": "Hello, how are you?"
92
- }
93
- ```
94
-
95
- ### Training Pairs (`training_pairs.jsonl`)
96
-
97
- 360 Sango-French translation pairs extracted from grammar and dictionary reference materials.
98
-
99
- | Field | Type | Description |
100
- | ------------- | ------ | ----------------------------------- |
101
- | `source_lang` | string | Source language code (`sg` or `fr`) |
102
- | `target_lang` | string | Target language code (`sg` or `fr`) |
103
- | `source` | string | Source text |
104
- | `target` | string | Target text |
105
-
106
- **Note on quality**: These pairs were extracted from a Sango grammar reference book. While many entries contain genuine Sango-French translations and vocabulary definitions, some are sentence fragments or contextual excerpts from the source material. Users should apply filtering for downstream tasks that require clean parallel sentences.
107
-
108
- **Example entry:**
109
-
110
- ```json
111
- {
112
- "source_lang": "sg",
113
- "target_lang": "fr",
114
- "source": "Mbï yê Bêafrîka mîngi",
115
- "target": "j'aime beaucoup la Centrafrique"
116
- }
117
- ```
118
-
119
- ### Category Distribution
120
-
121
- The vocabulary spans 29 semantic categories:
122
-
123
- | Category | Count | Category | Count |
124
- | ---------- | ----- | ----------- | ----- |
125
- | essential | 183 | verbs | 97 |
126
- | noun | 81 | places | 56 |
127
- | animals | 32 | food | 31 |
128
- | adjectives | 26 | numbers | 26 |
129
- | actions | 24 | time | 19 |
130
- | family | 18 | body | 15 |
131
- | clothing | 15 | emotions | 15 |
132
- | greetings | 15 | grammar | 10 |
133
- | home | 9 | health | 8 |
134
- | professions| 8 | technology | 8 |
135
- | tool | 8 | colors | 7 |
136
- | commerce | 7 | education | 5 |
137
- | nature | 5 | questions | 5 |
138
- | adverb | 3 | transport | 3 |
139
- | weather | 1 | | |
140
-
141
- ### Difficulty Distribution
142
-
143
- | Level | Count | Percentage |
144
- | ------------ | ----- | ---------- |
145
- | Essential | 71 | 9.6% |
146
- | Beginner | 239 | 32.3% |
147
- | Intermediate | 214 | 28.9% |
148
- | Advanced | 215 | 29.1% |
149
- | Expert | 1 | 0.1% |
150
-
151
- ## Dataset Creation
152
-
153
- ### Source Data
154
-
155
- - **Vocabulary entries**: Curated by MEYNG from Sango language learning resources including japprendslesango.com and verified Sango vocabulary references
156
- - **Training pairs**: Extracted from a comprehensive Sango grammar and dictionary reference work
157
- - **Verification**: Entries reviewed against known Sango linguistic sources
158
-
159
- ### Annotation Process
160
-
161
- Vocabulary entries were structured and categorized by native speakers and linguists familiar with Sango. Pronunciation guides use an English-approximation phonetic system designed for learners.
162
-
163
- ## Considerations for Using the Data
164
-
165
- ### Known Limitations
166
-
167
- 1. **Dataset size**: v2.0 contains **740 production-verified vocabulary entries** exported from the live SangoAI DynamoDB table (May 2026), up from 431 in v1.0. Pronunciation guides and example sentences from the v1.0 curated subset are not yet included in the full 740-entry export; contributions welcome.
168
- 2. **Training pair quality**: The translation pairs contain some fragmented text from the source material. Filtering is recommended for tasks requiring clean parallel data.
169
- 3. **Example sentences**: Not present in this export. Future versions aim to add examples for all entries.
170
- 4. **Dialect coverage**: Sango has regional variations. This dataset primarily represents the standardized Sango used in Bangui (the capital).
171
- 5. **Pronunciation guides**: The phonetic guides approximate Sango sounds using English phonetics. They are intended for learners, not for phonological research.
172
-
173
- ### Recommendations
174
-
175
- - Use as a seed dataset to bootstrap Sango NLP systems
176
- - Combine with the SangoAI API (740+ actively-managed words at `https://sangoai.sbs`) for real-time access
177
- - Apply quality filtering on `training_pairs.jsonl` before fine-tuning
178
- - Consider data augmentation techniques for downstream tasks
179
-
180
- ## Citation
181
-
182
- If you use this dataset in your research, please cite:
183
-
184
- ```bibtex
185
- @dataset{meyng_sango_vocabulary_2026,
186
- title={Sango Vocabulary Dataset: A Trilingual Lexical Resource for an Underrepresented African Language},
187
- author={MEYNG},
188
- year={2026},
189
- url={https://huggingface.co/datasets/meyng/sango-vocabulary},
190
- license={CC-BY-SA-4.0},
191
- language={sg, fr, en}
192
- }
193
- ```
194
-
195
- ## License
196
-
197
- This dataset is released under the [Creative Commons Attribution-ShareAlike 4.0 International License (CC-BY-SA-4.0)](https://creativecommons.org/licenses/by-sa/4.0/).
198
-
199
- You are free to:
200
-
201
- - **Share** -- copy and redistribute the material in any medium or format
202
- - **Adapt** -- remix, transform, and build upon the material for any purpose, including commercial
203
-
204
- Under the following terms:
205
-
206
- - **Attribution** -- You must give appropriate credit to MEYNG, provide a link to the license, and indicate if changes were made
207
- - **ShareAlike** -- If you remix, transform, or build upon the material, you must distribute your contributions under the same license
208
-
209
- ## Acknowledgments
210
-
211
- This dataset was created by **[MEYNG](https://meyng.com)** as part of the **[SangoAI](https://sangoai.sbs)** project, an AI-powered language platform dedicated to the preservation and digitization of Sango.
212
-
213
- We acknowledge:
214
-
215
- - The people of the **Central African Republic**, whose language and culture this dataset aims to preserve and promote
216
- - The Sango-speaking community worldwide for their contributions to language documentation
217
- - The creators of **japprendslesango.com** and other Sango learning resources that informed this work
218
- - The open-source NLP community working on low-resource African languages
219
-
220
- ## Contact
221
-
222
- - **Organization**: MEYNG
223
- - **Website**: [meyng.com](https://meyng.com)
224
- - **Platform**: [sangoai.sbs](https://sangoai.sbs)
225
- - **Email**: contact@meyng.com
226
- - **GitHub**: [github.com/meyng-hub/sangoai](https://github.com/meyng-hub/sangoai)
 
1
+ ---
2
+ language:
3
+ - sg
4
+ - fr
5
+ - en
6
+ license: cc-by-sa-4.0
7
+ task_categories:
8
+ - translation
9
+ - text-classification
10
+ - token-classification
11
+ task_ids:
12
+ - language-modeling
13
+ - multi-class-classification
14
+ pretty_name: Sango Vocabulary Dataset
15
+ size_categories:
16
+ - 1K-10K
17
+ tags:
18
+ - sango
19
+ - central-african-republic
20
+ - low-resource-languages
21
+ - african-languages
22
+ - language-preservation
23
+ - trilingual
24
+ - vocabulary
25
+ - dictionary
26
+ configs:
27
+ - config_name: vocabulary
28
+ data_files:
29
+ - split: train
30
+ path: vocabulary.jsonl
31
+ - config_name: training_pairs
32
+ data_files:
33
+ - split: train
34
+ path: training_pairs.jsonl
35
+ ---
36
+
37
+ # Sango Vocabulary Dataset
38
+
39
+ ## Dataset Description
40
+
41
+ The first structured digital vocabulary dataset for **Sango** (ISO 639-1: `sg`, ISO 639-3: `sag`), the national and most widely spoken language of the **Central African Republic**. Sango is a creole language with over 5 million speakers, yet it remains severely underrepresented in NLP research and digital resources.
42
+
43
+ This dataset provides trilingual vocabulary entries (Sango-French-English) with pronunciation guides and semantic categorization, along with Sango-French translation pairs extracted from grammar and dictionary references.
44
+
45
+ ### Supported Tasks
46
+
47
+ - **Machine Translation**: Sango-French and Sango-English translation
48
+ - **Language Modeling**: Pre-training or fine-tuning language models for Sango
49
+ - **Cross-lingual Transfer**: Leveraging French/English representations for Sango NLP
50
+ - **Language Documentation**: Digital preservation of Sango vocabulary and usage patterns
51
+ - **Educational Technology**: Building language learning applications for Sango
52
+
53
+ ### Languages
54
+
55
+ | Language | ISO 639-1 | ISO 639-3 | Role |
56
+ | -------- | --------- | --------- | ------------------------- |
57
+ | Sango | sg | sag | Primary target language |
58
+ | French | fr | fra | Primary bridge language |
59
+ | English | en | eng | Secondary bridge language |
60
+
61
+ ## Dataset Structure
62
+
63
+ ### Vocabulary (`vocabulary.jsonl`)
64
+
65
+ 431 trilingual vocabulary entries, each containing:
66
+
67
+ | Field | Type | Description | Coverage |
68
+ | ----------------- | ------ | ----------------------------- | -------- |
69
+ | `sango` | string | Sango word or phrase | 100% |
70
+ | `french` | string | French translation | 100% |
71
+ | `english` | string | English translation | 100% |
72
+ | `category` | string | Semantic/grammatical category | 100% |
73
+ | `difficulty` | string | Learning difficulty level | 100% |
74
+ | `pronunciation` | string | Phonetic pronunciation guide | 100% |
75
+ | `example_sango` | string | Example sentence in Sango | <1% |
76
+ | `example_french` | string | Example sentence in French | <1% |
77
+ | `example_english` | string | Example sentence in English | <1% |
78
+
79
+ **Example entry:**
80
+
81
+ ```json
82
+ {
83
+ "sango": "Bara âla",
84
+ "french": "Bonjour",
85
+ "english": "Hello",
86
+ "category": "greetings",
87
+ "difficulty": "beginner",
88
+ "pronunciation": "BAH-rah AH-lah",
89
+ "example_sango": "Bara âla, tongana nye?",
90
+ "example_french": "Bonjour, comment allez-vous?",
91
+ "example_english": "Hello, how are you?"
92
+ }
93
+ ```
94
+
95
+ ### Training Pairs (`training_pairs.jsonl`)
96
+
97
+ 360 Sango-French translation pairs extracted from grammar and dictionary reference materials.
98
+
99
+ | Field | Type | Description |
100
+ | ------------- | ------ | ----------------------------------- |
101
+ | `source_lang` | string | Source language code (`sg` or `fr`) |
102
+ | `target_lang` | string | Target language code (`sg` or `fr`) |
103
+ | `source` | string | Source text |
104
+ | `target` | string | Target text |
105
+
106
+ **Note on quality**: These pairs were extracted from a Sango grammar reference book. While many entries contain genuine Sango-French translations and vocabulary definitions, some are sentence fragments or contextual excerpts from the source material. Users should apply filtering for downstream tasks that require clean parallel sentences.
107
+
108
+ **Example entry:**
109
+
110
+ ```json
111
+ {
112
+ "source_lang": "sg",
113
+ "target_lang": "fr",
114
+ "source": "Mbï yê Bêafrîka mîngi",
115
+ "target": "j'aime beaucoup la Centrafrique"
116
+ }
117
+ ```
118
+
119
+ ### Category Distribution
120
+
121
+ The vocabulary spans 25 semantic categories:
122
+
123
+ | Category | Count | Category | Count |
124
+ | --------- | ----- | ----------- | ----- |
125
+ | nature | 30 | professions | 30 |
126
+ | clothing | 25 | commerce | 25 |
127
+ | education | 25 | health | 25 |
128
+ | home | 25 | adjectives | 20 |
129
+ | numbers | 20 | technology | 20 |
130
+ | transport | 20 | verbs | 18 |
131
+ | animals | 15 | emotions | 15 |
132
+ | greetings | 15 | body | 10 |
133
+ | colors | 10 | essential | 10 |
134
+ | actions | 10 | food | 12 |
135
+ | family | 12 | places | 12 |
136
+ | time | 10 | weather | 10 |
137
+ | questions | 7 | | |
138
+
139
+ ### Difficulty Distribution
140
+
141
+ | Level | Count | Percentage |
142
+ | ------------ | ----- | ---------- |
143
+ | Beginner | 210 | 48.7% |
144
+ | Intermediate | 200 | 46.4% |
145
+ | Advanced | 21 | 4.9% |
146
+
147
+ ## Dataset Creation
148
+
149
+ ### Source Data
150
+
151
+ - **Vocabulary entries**: Curated by MEYNG from Sango language learning resources including japprendslesango.com and verified Sango vocabulary references
152
+ - **Training pairs**: Extracted from a comprehensive Sango grammar and dictionary reference work
153
+ - **Verification**: Entries reviewed against known Sango linguistic sources
154
+
155
+ ### Annotation Process
156
+
157
+ Vocabulary entries were structured and categorized by native speakers and linguists familiar with Sango. Pronunciation guides use an English-approximation phonetic system designed for learners.
158
+
159
+ ## Considerations for Using the Data
160
+
161
+ ### Known Limitations
162
+
163
+ 1. **Dataset size**: This release contains **611 deduplicated vocabulary entries** (v1.1.0, May 2026) and **360 translation pairs**. The vocabulary was deduplicated from 769 raw entries — 126 true duplicate groups (same Sango+French+English from different CSV import batches) were removed, leaving 611 unique words. Also includes `grammar_rules.json` with 13 structured Sango grammar rules.
164
+ 2. **Training pair quality**: The translation pairs contain some fragmented text from the source material. Filtering is recommended for tasks requiring clean parallel data.
165
+ 3. **Example sentences**: Only 1 vocabulary entry includes example sentences. Future versions aim to add examples for all entries.
166
+ 4. **Dialect coverage**: Sango has regional variations. This dataset primarily represents the standardized Sango used in Bangui (the capital).
167
+ 5. **Pronunciation guides**: The phonetic guides approximate Sango sounds using English phonetics. They are intended for learners, not for phonological research.
168
+
169
+ ### Recommendations
170
+
171
+ - Use as a seed dataset to bootstrap Sango NLP systems
172
+ - Access the full 611-word dataset directly via the SangoAI API at `https://sangoai.sbs`
173
+ - Apply quality filtering on `training_pairs.jsonl` before fine-tuning
174
+ - Consider data augmentation techniques for downstream tasks
175
+
176
+ ## Citation
177
+
178
+ If you use this dataset in your research, please cite:
179
+
180
+ ```bibtex
181
+ @dataset{meyng_sango_vocabulary_2026,
182
+ title={Sango Vocabulary Dataset: A Trilingual Lexical Resource for an Underrepresented African Language},
183
+ author={MEYNG},
184
+ year={2026},
185
+ url={https://huggingface.co/datasets/meyng/sango-vocabulary},
186
+ license={CC-BY-SA-4.0},
187
+ language={sg, fr, en}
188
+ }
189
+ ```
190
+
191
+ ## License
192
+
193
+ This dataset is released under the [Creative Commons Attribution-ShareAlike 4.0 International License (CC-BY-SA-4.0)](https://creativecommons.org/licenses/by-sa/4.0/).
194
+
195
+ You are free to:
196
+
197
+ - **Share** -- copy and redistribute the material in any medium or format
198
+ - **Adapt** -- remix, transform, and build upon the material for any purpose, including commercial
199
+
200
+ Under the following terms:
201
+
202
+ - **Attribution** -- You must give appropriate credit to MEYNG, provide a link to the license, and indicate if changes were made
203
+ - **ShareAlike** -- If you remix, transform, or build upon the material, you must distribute your contributions under the same license
204
+
205
+ ## Acknowledgments
206
+
207
+ This dataset was created by **[MEYNG](https://meyng.com)** as part of the **[SangoAI](https://sangoai.sbs)** project, an AI-powered language platform dedicated to the preservation and digitization of Sango.
208
+
209
+ We acknowledge:
210
+
211
+ - The people of the **Central African Republic**, whose language and culture this dataset aims to preserve and promote
212
+ - The Sango-speaking community worldwide for their contributions to language documentation
213
+ - The creators of **japprendslesango.com** and other Sango learning resources that informed this work
214
+ - The open-source NLP community working on low-resource African languages
215
+
216
+ ## Contact
217
+
218
+ - **Organization**: MEYNG
219
+ - **Website**: [meyng.com](https://meyng.com)
220
+ - **Platform**: [sangoai.sbs](https://sangoai.sbs)
221
+ - **Email**: contact@meyng.com
222
+ - **GitHub**: [github.com/meyng-hub/sangoai](https://github.com/meyng-hub/sangoai)
 
 
 
 
grammar_rules.json ADDED
@@ -0,0 +1,205 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "1.1.0",
3
+ "last_updated": "2026-05-02",
4
+ "language": {
5
+ "name": "Sango",
6
+ "iso639_1": "sg",
7
+ "iso639_3": "sag",
8
+ "region": "Central African Republic"
9
+ },
10
+ "description": "Grammar rules and correction patterns for Sango language generation. Compiled from systematic review of AI output errors on the SangoAI platform (sangoai.sbs). Each rule documents a confirmed error pattern — the wrong form was observed in generated Sango text before the rule was added.",
11
+ "note": "Rules are ordered by discovery date, not importance. All examples are minimal pairs unless noted otherwise.",
12
+ "rules": [
13
+ {
14
+ "id": 1,
15
+ "category": "question_formation",
16
+ "title": "Question particle 'fa' (yes/no questions)",
17
+ "correct": ["Mo yeke nzoni fa?"],
18
+ "wrong": ["Mo yeke nzoni na?"],
19
+ "explanation": "'fa' is the yes/no question particle. 'na' means 'and / with' (conjunction/preposition) and is NOT a question marker.",
20
+ "gloss": {
21
+ "Mo yeke nzoni fa": "you are well [question]",
22
+ "Mo yeke nzoni na": "you are well and [incomplete — grammatically wrong]"
23
+ }
24
+ },
25
+ {
26
+ "id": 2,
27
+ "category": "adverbs",
28
+ "title": "Adverb 'nga' means 'also', not a question particle",
29
+ "correct": ["Mo yeke nzoni nga?"],
30
+ "wrong": ["Mo yeke nzoni nga?"],
31
+ "explanation": "'nga' = also/aussi. It is NOT a question particle. Confusing it with 'fa' produces sentences like 'Are you also well?' when 'Are you well?' was intended.",
32
+ "gloss": {
33
+ "Mo yeke nzoni nga": "you are well also",
34
+ "Mo yeke nzoni fa": "are you well? [correct yes/no question]"
35
+ }
36
+ },
37
+ {
38
+ "id": 3,
39
+ "category": "modal_verbs",
40
+ "title": "Modal 'can/able' — 'lingbi na', NOT 'lingbi ti'",
41
+ "correct": ["Mo lingbi na sara", "Mbi lingbi na gwe"],
42
+ "wrong": ["Mo lingbi ti sara", "Mbi lingbi ti manda"],
43
+ "explanation": "The modal 'lingbi' (can / be able to) takes the preposition 'na', not the possessive/purpose marker 'ti'.",
44
+ "word_order": "Subject + lingbi + na + verb"
45
+ },
46
+ {
47
+ "id": 4,
48
+ "category": "word_order",
49
+ "title": "Word order for 'can' sentences",
50
+ "correct": ["Mo lingbi na sara nzönî lâsô?"],
51
+ "wrong": ["Nye la mo lingbi ti sara nzönî lâsô?"],
52
+ "explanation": "Correct SVO order: Subject + lingbi + na + verb. Do not front-shift 'nye la' (what) into the subject position for ability questions."
53
+ },
54
+ {
55
+ "id": 5,
56
+ "category": "negation",
57
+ "title": "Negation particle 'ape' — self-introduction error",
58
+ "correct": [
59
+ "Mbi yeke SangoAI, mbi yeke na mo ti sara kwa tî manda ngo yângâ tî Sängö"
60
+ ],
61
+ "wrong": ["mbi yeke ape na mo ti sara kwa na yângâ tî Sängö"],
62
+ "explanation": "'ape' = negation (not / ne…pas). Inserting 'ape' in a self-introduction negates the entire clause. 'ngo' = about/or, not 'na' = and/with."
63
+ },
64
+ {
65
+ "id": 6,
66
+ "category": "question_formation",
67
+ "title": "'How are you?' requires 'Tongana na nye?', not 'Tongana mo?'",
68
+ "correct": ["Tongana na nye?"],
69
+ "wrong": ["Tongana mo?"],
70
+ "explanation": "Literal: tongana (like/how) + na (with) + nye (what) = 'like what?' The 'na nye' portion is mandatory. Dropping it to 'Tongana mo?' ('like you?') is grammatically incorrect.",
71
+ "gloss": {
72
+ "Tongana na nye": "how (lit. like with what)"
73
+ }
74
+ },
75
+ {
76
+ "id": 7,
77
+ "category": "verbs",
78
+ "title": "'fa' as verb = teach (enseigner), not language (yângâ)",
79
+ "correct": ["mbi yeke na ngia ti fa na ma legue ti manda ngo Sängö"],
80
+ "wrong": [
81
+ "mbi yeke na ngia mingi ti yângâ na mo na Sängö",
82
+ "Mbi yeke ape ti gbâ mo na kötä zo tî âla!"
83
+ ],
84
+ "explanation": "'fa' is polysemous: (1) yes/no question particle, (2) verb 'to teach'. 'yângâ' = language (noun). Using 'yângâ' as a verb is incorrect.",
85
+ "gloss": {
86
+ "fa": "question particle OR to teach (context-dependent)",
87
+ "yângâ": "language (noun only)"
88
+ }
89
+ },
90
+ {
91
+ "id": 8,
92
+ "category": "particles",
93
+ "title": "Particle 'ti' (possessive/purpose) vs 'na' (and/with)",
94
+ "correct": ["yângâ tî Sängö", "manda tî mo", "lingbi na sara"],
95
+ "wrong": ["yângâ na Sängö", "lingbi ti sara"],
96
+ "explanation": "'tî/ti' = possessive or purpose marker ('of', 'for'). 'na' = and/with (conjunction/preposition). These are NOT interchangeable.",
97
+ "gloss": {
98
+ "yângâ tî Sängö": "the Sango language (language of Sango)",
99
+ "manda tî mo": "your learning",
100
+ "lingbi na sara": "able to do"
101
+ }
102
+ },
103
+ {
104
+ "id": 9,
105
+ "category": "vocabulary_disambiguation",
106
+ "title": "Commonly confused function words",
107
+ "entries": [
108
+ {
109
+ "word": "fa",
110
+ "meaning": "question particle (yes/no) OR verb 'teach' (context-dependent)"
111
+ },
112
+ {
113
+ "word": "nga",
114
+ "meaning": "also/aussi (adverb, NOT a question word)"
115
+ },
116
+ {
117
+ "word": "na",
118
+ "meaning": "and / et / with (conjunction/preposition, NOT 'also')"
119
+ },
120
+ { "word": "ngo", "meaning": "about / or (NOT 'na' for this meaning)" },
121
+ {
122
+ "word": "ape",
123
+ "meaning": "negation (not / ne…pas) — do NOT use randomly"
124
+ },
125
+ {
126
+ "word": "manda",
127
+ "meaning": "to learn / to speak (both meanings, context-dependent)"
128
+ },
129
+ { "word": "fa (verb)", "meaning": "to teach" }
130
+ ]
131
+ },
132
+ {
133
+ "id": 10,
134
+ "category": "greetings",
135
+ "title": "Standard greeting sequence",
136
+ "correct_sequence": [
137
+ "Bara âla!",
138
+ "Mbi yeke nzoni mingi, singuila!",
139
+ "Mbi yeke SangoAI, mbi yeke na mo ti sara kwa tî manda ngo yângâ tî Sängö.",
140
+ "Mbi yeke na ngia ti fa na ma legue ti manda ngo Sängö.",
141
+ "Tongana na nye? Mo yeke senge?"
142
+ ],
143
+ "translations": [
144
+ "Hello everyone!",
145
+ "I am very well, thank you!",
146
+ "I am SangoAI, I am here to help you learn the Sango language.",
147
+ "I am happy to teach you a little about learning Sango.",
148
+ "How are you? Are you well?"
149
+ ]
150
+ },
151
+ {
152
+ "id": 11,
153
+ "category": "interjections",
154
+ "title": "'awa' (awâ) is an interjection only — never inside a verb phrase",
155
+ "correct": ["Mbï yeke na pekö ti mo", "Awâ! Ti sara kwa."],
156
+ "wrong": ["Mbï yeke awa na pekö ti mo"],
157
+ "explanation": "'awâ' = come on / allez (interjection). It cannot be inserted inside a verb phrase like 'yeke awa na'. It stands alone as an exclamation."
158
+ },
159
+ {
160
+ "id": 12,
161
+ "category": "language_ability",
162
+ "title": "Saying someone 'speaks' a language — use 'yé ti manda yânga tî'",
163
+ "correct": ["Mo yé ti manda yânga tî Sängö fa?"],
164
+ "wrong": [
165
+ "Mo hînga ndâ na yângâ tî Sängö",
166
+ "Mo lingbi na kua na ndâ âyë"
167
+ ],
168
+ "explanation": "'hînga' = to know/savoir — not 'to speak'. 'yé ti manda yânga tî [language]' is the construction for expressing language-speaking ability.",
169
+ "gloss": {
170
+ "Mo yé ti manda yânga tî Sängö fa": "Do you speak Sango? (lit. you [progressive] to learn the language of Sango [question]?)",
171
+ "Mo hînga Sängö": "Do you know Sango? (different meaning)"
172
+ }
173
+ },
174
+ {
175
+ "id": 13,
176
+ "category": "verbs",
177
+ "title": "'ounda' = to look for/search (chercher)",
178
+ "correct": ["Mo yé ti ounda mbéni yé ndé fa?"],
179
+ "wrong": ["mo lîngbi na kua na ndâ âyë"],
180
+ "explanation": "'ounda' = to look for / to search. 'yé ti [verb]' = progressive/purposive construction. The wrong form is unnatural/incorrect for searching contexts.",
181
+ "gloss": {
182
+ "Mo yé ti ounda mbéni yé ndé fa": "Are you looking for something? (lit. you [progressive] to search some thing [question]?)"
183
+ }
184
+ }
185
+ ],
186
+ "orthography_rules": [
187
+ "Use proper diacritics: â, ê, ë, î, ö, ô, û, ü, ï",
188
+ "Tone marks are essential for meaning",
189
+ "Sango uses Subject-Verb-Object word order",
190
+ "No grammatical gender",
191
+ "Tense is expressed through context and auxiliary words"
192
+ ],
193
+ "cultural_context": {
194
+ "status": "National language of the Central African Republic (alongside French)",
195
+ "speakers": "5+ million",
196
+ "origin": "Creole language based on Ngbandi",
197
+ "uses": ["Government", "Education", "Daily life", "National unity"]
198
+ },
199
+ "citation": {
200
+ "source": "SangoAI platform (https://sangoai.sbs) — compiled from AI error analysis",
201
+ "organization": "MEYNG",
202
+ "year": 2026,
203
+ "license": "CC-BY-SA-4.0"
204
+ }
205
+ }
metadata.json CHANGED
@@ -1,10 +1,10 @@
1
  {
2
- "dataset_name": "MEYNG/sango-vocabulary",
3
- "version": "2.0.0",
4
  "creation_date": "2026-04-02",
5
  "last_updated": "2026-05-02",
6
  "description": "First structured digital vocabulary dataset for the Sango language (ISO 639-1: sg), the national language of the Central African Republic spoken by over 5 million people.",
7
- "note": "v2.0 update: 740 production-verified entries exported from the live SangoAI DynamoDB table after deduplication and quality audit. Pronunciation guides and example sentences are not included in this export (those exist only in the curated static subset); contributions welcome.",
8
  "languages": [
9
  {
10
  "code": "sg",
@@ -34,46 +34,46 @@
34
  },
35
  "statistics": {
36
  "vocabulary": {
37
- "total_entries": 740,
38
- "with_pronunciation_guide": 0,
39
- "with_example_sentences": 0,
40
  "categories": 29,
41
  "category_distribution": {
42
- "essential": 183,
43
- "verbs": 97,
44
- "noun": 81,
45
- "places": 56,
46
- "animals": 32,
47
- "food": 31,
48
- "adjectives": 26,
49
- "numbers": 26,
50
  "actions": 24,
51
- "time": 19,
52
- "family": 18,
53
- "body": 15,
54
- "clothing": 15,
55
- "emotions": 15,
56
  "greetings": 15,
57
- "grammar": 10,
58
- "home": 9,
59
- "health": 8,
60
- "professions": 8,
61
  "technology": 8,
62
- "tool": 8,
63
  "colors": 7,
 
64
  "commerce": 7,
 
 
 
65
  "education": 5,
66
  "nature": 5,
67
- "questions": 5,
68
- "adverb": 3,
69
  "transport": 3,
 
 
70
  "weather": 1
71
  },
72
  "difficulty_distribution": {
 
 
 
73
  "essential": 71,
74
- "beginner": 239,
75
- "intermediate": 214,
76
- "advanced": 215,
77
  "expert": 1
78
  }
79
  },
@@ -88,9 +88,15 @@
88
  "files": [
89
  {
90
  "filename": "vocabulary.jsonl",
91
- "description": "Structured trilingual vocabulary entries (Sango-French-English), exported from production DynamoDB after quality audit",
92
  "format": "JSONL",
93
- "entries": 740
 
 
 
 
 
 
94
  },
95
  {
96
  "filename": "training_pairs.jsonl",
@@ -103,6 +109,6 @@
103
  "title": "Sango Vocabulary Dataset",
104
  "authors": ["MEYNG"],
105
  "year": 2026,
106
- "url": "https://huggingface.co/datasets/MEYNG/sango-vocabulary"
107
  }
108
  }
 
1
  {
2
+ "dataset_name": "meyng/sango-vocabulary",
3
+ "version": "1.1.0",
4
  "creation_date": "2026-04-02",
5
  "last_updated": "2026-05-02",
6
  "description": "First structured digital vocabulary dataset for the Sango language (ISO 639-1: sg), the national language of the Central African Republic spoken by over 5 million people.",
7
+ "note": "This is the actively-maintained vocabulary dataset (611 unique deduplicated entries). The live SangoAI API (sangoai.sbs) reflects the same 611 verified unique words sourced from DynamoDB.",
8
  "languages": [
9
  {
10
  "code": "sg",
 
34
  },
35
  "statistics": {
36
  "vocabulary": {
37
+ "total_entries": 611,
38
+ "with_pronunciation_guide": 611,
39
+ "with_example_sentences": 1,
40
  "categories": 29,
41
  "category_distribution": {
42
+ "essential": 181,
43
+ "verbs": 77,
44
+ "places": 54,
45
+ "noun": 26,
46
+ "numbers": 25,
 
 
 
47
  "actions": 24,
48
+ "food": 23,
49
+ "animals": 21,
50
+ "adjectives": 20,
51
+ "time": 18,
52
+ "family": 16,
53
  "greetings": 15,
54
+ "emotions": 14,
55
+ "body": 12,
56
+ "clothing": 11,
 
57
  "technology": 8,
58
+ "professions": 8,
59
  "colors": 7,
60
+ "grammar": 7,
61
  "commerce": 7,
62
+ "health": 7,
63
+ "home": 9,
64
+ "questions": 5,
65
  "education": 5,
66
  "nature": 5,
 
 
67
  "transport": 3,
68
+ "adverb": 1,
69
+ "tool": 1,
70
  "weather": 1
71
  },
72
  "difficulty_distribution": {
73
+ "beginner": 238,
74
+ "intermediate": 202,
75
+ "advanced": 99,
76
  "essential": 71,
 
 
 
77
  "expert": 1
78
  }
79
  },
 
88
  "files": [
89
  {
90
  "filename": "vocabulary.jsonl",
91
+ "description": "Structured trilingual vocabulary entries (Sango-French-English), deduplicated",
92
  "format": "JSONL",
93
+ "entries": 611
94
+ },
95
+ {
96
+ "filename": "grammar_rules.json",
97
+ "description": "Structured Sango grammar rules compiled from AI error analysis (13 rules, v1.1.0)",
98
+ "format": "JSON",
99
+ "entries": 13
100
  },
101
  {
102
  "filename": "training_pairs.jsonl",
 
109
  "title": "Sango Vocabulary Dataset",
110
  "authors": ["MEYNG"],
111
  "year": 2026,
112
+ "url": "https://huggingface.co/datasets/meyng/sango-vocabulary"
113
  }
114
  }
vocabulary.jsonl CHANGED
The diff for this file is too large to render. See raw diff