kalixlouiis commited on
Commit
ad54837
·
verified ·
1 Parent(s): 2f7eafa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +86 -0
README.md CHANGED
@@ -1,3 +1,89 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ task_categories:
4
+ - text-generation
5
+ - fill-mask
6
+ - token-classification
7
+ language:
8
+ - my
9
+ tags:
10
+ - burmese
11
+ - wikipedia
12
+ - nlp
13
+ - dataset
14
+ - low-resource
15
+ - monolingual
16
  ---
17
+
18
+ # Burmese Only Wiki Dataset
19
+
20
+ This dataset is a refined, high-precision monolingual collection derived from the [DatarrX/myanmar-Wikipedia](https://huggingface.co/datasets/DatarrX/myanmar-Wikipedia) repository. It has been strictly filtered to ensure that every sentence contains exclusively Burmese characters, making it an ideal resource for language modeling, sequence-to-sequence tasks, and linguistic research where cross-lingual noise must be eliminated.
21
+
22
+ ## 🏛️ About DatarrX
23
+ **DatarrX (Burmese: ဒေတာအက်စ်)** is a non-profit open-source foundation dedicated to building a robust digital foundation for the Burmese language in the AI era. We believe that high-quality data is the core of AI innovation. Our mission is to empower the Burmese AI ecosystem by building high-quality open-source datasets, essential AI tools, and localized technical resources.
24
+
25
+ ---
26
+
27
+ ## 🏗️ Creation & Curation Process
28
+
29
+ To create this "Burmese-only" subset, we implemented a rigorous linguistic filtration pipeline:
30
+
31
+ 1. **Source Extraction:** Data was pulled from the processed `myanmar-Wikipedia` dataset, ensuring a consistent starting point.
32
+ 2. **Linguistic Purity Filtering:** We applied a strict Unicode-range filter (specifically targeting Burmese script blocks `\u1000-\u109F`) to detect and exclude sentences containing English, Chinese, Japanese, Korean, Thai, or other non-Burmese characters.
33
+ 3. **Symbol & Artifact Cleansing:** * Removed redundant formatting characters and markup residue (`''''''`, `||`, `##`).
34
+ * Eliminated incomplete punctuation artifacts and empty parenthetical groups.
35
+ 4. **Structural Normalization:** Enforced sentence-ending consistency by ensuring every sentence concludes with the standard Burmese full-stop (`။`).
36
+ 5. **Syllable Tokenization:** Every sentence was passed through the `mm-syllable` breaker, with a validation layer to remove invalid syllable combinations, ensuring the integrity of the secondary `syllable` column.
37
+
38
+ ---
39
+
40
+ ## 📊 Dataset Statistics
41
+ * **Total Sentences:** 353,267
42
+ * **Average Sentence Length:** 106.49 characters
43
+ * **Average Syllable Count:** 33.84
44
+ * **Structural Consistency:** 99.99% of sentences end with the standard Burmese full-stop (`။`).
45
+
46
+ ### Data Structure
47
+ | Column | Description |
48
+ | :--- | :--- |
49
+ | `text` | The clean, purely Burmese sentence. |
50
+ | `syllable` | The same sentence segmented into syllables with spaces. |
51
+
52
+ **Sample Entry:**
53
+ ```json
54
+ {
55
+ "text": "ဝီကီဟု ခေါ်သော ဝက်ဘ်ဆိုက် ပုံစံတစ်မျိုးကို အသုံးပြု၍ ပူးပေါင်းရေးသားခြင်းကို အဆင်ပြေစေရန် စီမံထားခြင်း ဖြစ်ပါသည်။",
56
+ "syllable": "ဝီ ကီ ဟု ခေါ် သော ဝက်ဘ် ဆိုက် ပုံ စံ တစ် မျိုး ကို အ သုံး ပြု ၍ ပူး ပေါင်း ရေး သား ခြင်း ကို အ ဆင် ပြေ စေ ရန် စီ မံ ထား ခြင်း ဖြစ် ပါ သည် ။",
57
+ "text_len": 113,
58
+ "syllable_count": 35
59
+ }
60
+ ```
61
+
62
+ ---
63
+
64
+ ## 👨‍💻 Creator & Contributors
65
+
66
+ This dataset is curated and maintained by **Khant Sint Heinn (Burmese: ခန့်ဆင့်ဟိဏ်း, Kalix Louis)**.
67
+
68
+ Khant Sint Heinn is a Machine Learning Engineer specializing in NLP and open-source AI development. As the Lead Developer at **DatarrX**, he focuses on building scalable data pipelines and practical infrastructure to improve support for low-resource languages. His work aims to transform limited language resources into practical opportunities through clean data and community-driven innovation.
69
+
70
+ ---
71
+
72
+ ## ⚖️ License & Citation
73
+
74
+ This work is released under the **Creative Commons Attribution 4.0 International (CC-BY-4.0)** license.
75
+
76
+ If you utilize this dataset in your work, please cite as:
77
+
78
+ ```bibtex
79
+ @misc{datarrx_burmese_only_2026,
80
+ author = {Khant Sint Heinn},
81
+ title = {Burmese Only Wiki Dataset},
82
+ year = {2026},
83
+ publisher = {Hugging Face},
84
+ organization = {DatarrX},
85
+ howpublished = {https://huggingface.co/datasets/DatarrX/myanmar-Wikipedia},
86
+ note = {Published under DatarrX. Open-source community asset released under Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)}
87
+ }
88
+
89
+ ```