Datasets:

Modalities:
Text
Formats:
json
Languages:
Zarma
ArXiv:
Libraries:
Datasets
pandas
License:
Mamadou2727 commited on
Commit
03b4877
·
verified ·
1 Parent(s): d5069bd

create README

Browse files
Files changed (1) hide show
  1. README.md +65 -0
README.md ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ name: Zarma Noisy Dataset
3
+ language:
4
+ - dje
5
+ version: 1.0.0
6
+ license: cc-by-sa-4.0
7
+ source: Derived from monolingual Zarma dataset
8
+ task_categories:
9
+ - text-classification
10
+ - text-generation
11
+ - fill-mask
12
+ - question-answering
13
+ size_categories:
14
+ - 100K<n<1M
15
+ ---
16
+
17
+ # Zarma Noisy Dataset
18
+
19
+ ## Overview
20
+
21
+ The Zarma Noisy Dataset is a collection of Zarma sentences with artificially introduced noise to simulate human-like errors. This dataset is designed for tasks such as grammatical error correction (GEC), text denoising, and robustness testing in natural language processing (NLP) for low-resource languages like Zarma. It is derived from a clean monolingual Zarma dataset (`monolingual_zarma.jsonl`) by applying various types of noise, including character-level and word-level modifications.
22
+
23
+ ## Dataset Structure
24
+
25
+ The dataset is stored in a JSONL file (`noisy/zarma_noisy_dataset.jsonl`) where each line is a JSON object with the following fields:
26
+
27
+ * **`original`**: The raw input sentence as it appears in the source dataset, preserving its exact form.
28
+ * **`cleaned`**: A normalized version of the sentence (Unicode NFC normalization, extra spaces removed).
29
+ * **`char_swap`**: The sentence with adjacent character swaps (e.g., "teh" → "the") within words to mimic typos.
30
+ * **`random_char_insertion`**: The sentence with up to 2 random character insertions, preferring vowels near vowels for realism.
31
+ * **`char_delete`**: The sentence with character deletions, avoiding critical positions (first/last in words).
32
+ * **`char_substitute`**: The sentence with character substitutions, using similar-looking or keyboard-adjacent characters (e.g., 'a' → 's').
33
+ * **`word_masking`**: The sentence with words replaced by a `BLANK` token, preferring content words (length > 3).
34
+ * **`word_swap`**: The sentence wit adjacent word swaps (e.g., "is it" → "it is").
35
+
36
+ ### Example Entry
37
+
38
+ ```json
39
+ {
40
+ "original": "Yesu Kirisita Tuura Wema TUURA WEMA",
41
+ "cleaned": "Yesu Kirisita Tuura Wema TUURA WEMA",
42
+ "char_swap": "Yseu Kirisita Tuura Wema TUURA WEMA",
43
+ "random_char_insertion": "Yesu Kirisita Tuura Wema TUURA aWEMA",
44
+ "char_delete": "Yesu Kirista Tuura Wema TURA WEMA",
45
+ "char_substitute": "Yesu Kirisita Tuura Wema TUURA WEMs",
46
+ "word_masking": "Yesu Kirisita BLANK Wema TUURA WEMA",
47
+ "word_swap": "Yesu Kirisita Wema Tuura TUURA WEMA"
48
+ }
49
+ ```
50
+ ## Citation
51
+
52
+ If you use this dataset in your research, please cite the following paper:
53
+ code
54
+ Bibtex
55
+ ```bibtex
56
+ @misc{keita2025grammaticalerrorcorrectionlowresource,
57
+ title={Grammatical Error Correction for Low-Resource Languages: The Case of Zarma},
58
+ author={Mamadou K. Keita and Christopher Homan and Marcos Zampieri and Adwoa Bremang and Habibatou Abdoulaye Alfari and Elysabhete Amadou Ibrahim and Dennis Owusu},
59
+ year={2025},
60
+ eprint={2410.15539},
61
+ archivePrefix={arXiv},
62
+ primaryClass={cs.CL},
63
+ url={https://arxiv.org/abs/2410.15539},
64
+ }
65
+ ```