freococo commited on
Commit
895954c
·
verified ·
1 Parent(s): 4cb8027

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +100 -3
README.md CHANGED
@@ -1,3 +1,100 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-sa-4.0
3
+ language:
4
+ - en
5
+ - my
6
+ pretty_name: "Myanmar Bilingual Village Address Directory (72k+ Entries)"
7
+ tags:
8
+ - myanmar
9
+ - bilingual
10
+ - geospatial
11
+ - address-parsing
12
+ - named-entity-recognition
13
+ - translation
14
+ ---
15
+
16
+ # Myanmar Bilingual Village Address Directory (72k+ Entries)
17
+
18
+ ## Dataset Description
19
+
20
+ This dataset provides a comprehensive, bilingual (English and Myanmar) list of over 72,000 rural village addresses across Myanmar. Each entry is a clean, human-readable address string containing the village, village tract, township, district, and state/region.
21
+
22
+ The dataset is ideal for a wide range of NLP and data science tasks, including Named Entity Recognition (NER), address parsing, machine translation, and as a foundational resource for logistics and geospatial analysis in the Myanmar context.
23
+
24
+ This final, cleaned dataset was prepared by [freococo](https://huggingface.co/freococo).
25
+
26
+ ## Data Fields
27
+
28
+ The dataset contains a single CSV file (`myanmar_village_based_72k_addresses.csv`) with two columns, representing a parallel corpus of addresses.
29
+
30
+ * `Address_English`: The complete address string in English.
31
+ * `Address_Myanmar`: The complete address string in Myanmar script.
32
+
33
+ **Example Row:**
34
+ | Address_English | Address_Myanmar |
35
+ |---|---|
36
+ | `Da None Chaung, (Kyun Nyo Gyi) Kyun Hteik, Bogale Township, Pyapon District, Ayeyarwady` | `ဓနုံးချောင်း, (ကျွန်းညိုကြီး) ကျွန်းထိပ် ကျေးရွာအုပ်စု, ဘိုကလေး မြို့နယ်, ဖျာပုံခရိုင်, ဧရာဝတီတိုင်းဒေသကြီး` |
37
+
38
+ ## Data Splits
39
+
40
+ The dataset consists of a single split, `train`, containing 72,569 entries.
41
+
42
+ ## Dataset Creation
43
+
44
+ The dataset was derived from the **Myanmar Place Codes (P-Codes) Release 9.6 (Feb 2025)**, provided by the **Myanmar Information Management Unit (MIMU)**, a service of the United Nations in Myanmar. The source data was downloaded from the **Humanitarian Data Exchange (HDX)**.
45
+
46
+ The original hierarchical files were programmatically merged, de-duplicated, and transformed into this clean, flat address list using Python and the pandas library.
47
+
48
+ ## Usage
49
+
50
+ The dataset can be easily loaded using the Hugging Face `datasets` library.
51
+
52
+ ```python
53
+ from datasets import load_dataset
54
+
55
+ # Load the dataset
56
+ dataset = load_dataset("freococo/myanmar_village_based_72k_addresses")
57
+
58
+ # Access an example from the dataset
59
+ print(dataset['train'])
60
+
61
+ # Expected output:
62
+ # {
63
+ # 'Address_English': 'Da None Chaung, (Kyun Nyo Gyi) Kyun Hteik, Bogale Township, Pyapon District, Ayeyarwady',
64
+ # 'Address_Myanmar': 'ဓနုံးချောင်း, (ကျွန်းညိုကြီး) ကျွန်းထိပ် ကျေးရွာအုပ်စု, ဘိုကလေး မြို့နယ်, ဖျာပုံခရိုင်, ဧရာဝတီတိုင်းဒေသကြီး'
65
+ # }
66
+ ```
67
+ ## Use Cases and Limitations
68
+
69
+ ### Potential Use Cases
70
+
71
+ * **Named Entity Recognition (NER):** This dataset is a valuable resource for training models to recognize Myanmar place names (e.g., `B-STATE`, `I-DISTRICT`, `I-VILLAGE`).
72
+ * **Address Parsing:** It can be used to train models that can take an unstructured address string and break it down into its constituent administrative parts (village, township, etc.).
73
+ * **Machine Translation:** The bilingual format makes it a useful parallel corpus for fine-tuning translation models specifically for Myanmar administrative terms.
74
+ * **Data Augmentation:** Can be used to create realistic synthetic data for applications requiring Myanmar addresses.
75
+
76
+ ### Limitations
77
+
78
+ * **Rural Only:** This dataset exclusively contains rural village addresses and does not include urban administrative units like towns or wards.
79
+ * **No Geographic Coordinates:** The final formatted file does not contain latitude and longitude data. For geocoding, this dataset would need to be joined back to the original source files.
80
+ * **Static Data:** The dataset is based on the February 2025 release from MIMU and will not reflect any subsequent administrative changes.
81
+
82
+ ## Citation Information
83
+
84
+ If you use this dataset in your work, please cite the original data source and acknowledge the creator of this specific version.
85
+
86
+ ### Citing the Original Source
87
+
88
+ > Myanmar Information Management Unit (MIMU). (2025). *MIMU Place Codes (P-Codes) Release 9.6*. Sourced from the Humanitarian Data Exchange (HDX).
89
+
90
+ ### Citing this Dataset Repository
91
+
92
+ ```bibtex
93
+ @dataset{freococo_myanmar_village_addresses,
94
+ author = {freococo},
95
+ title = {Myanmar Bilingual Village Address Directory (72k+ Entries)},
96
+ year = {2025},
97
+ publisher = {Hugging Face},
98
+ version = {1.0.0},
99
+ url = {https://huggingface.co/datasets/freococo/myanmar_village_based_72k_addresses}
100
+ }