austin2029 commited on
Commit
4eb6732
Β·
verified Β·
1 Parent(s): dfabeff

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +82 -7
README.md CHANGED
@@ -1,4 +1,15 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: row_id
@@ -13,11 +24,75 @@ dataset_info:
13
  - name: train
14
  num_bytes: 587678
15
  num_examples: 1242
16
- download_size: 174897
17
- dataset_size: 587678
18
- configs:
19
- - config_name: default
20
- data_files:
21
- - split: train
22
- path: data/train-*
23
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - my
4
+ license: cc-by-4.0
5
+ tags:
6
+ - myanmar
7
+ - burmese
8
+ - history
9
+ - nlp
10
+ - text-classification
11
+ - rag
12
+ pretty_name: Open Myanmar Data - Myanmar Kings & Historical Narrative Dataset
13
  dataset_info:
14
  features:
15
  - name: row_id
 
24
  - name: train
25
  num_bytes: 587678
26
  num_examples: 1242
27
+ download_size: 174897
28
+ dataset_size: 587678
29
+ configs:
30
+ - config_name: default
31
+ data_files:
32
+ - split: train
33
+ path: data/train-*
34
  ---
35
+
36
+ # πŸ‡²πŸ‡² Open Myanmar Data: Myanmar Kings & Historical Narrative Dataset
37
+
38
+ [![License: CC BY 4.0](https://img.shields.io/badge/License-CC_BY_4.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/)
39
+ [![Hugging Face](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Datasets-blue)](https://huggingface.co/datasets)
40
+
41
+ ## πŸ“Œ Dataset Summary
42
+ This repository contains a clean, high-quality, sentence-segmented historical narrative dataset regarding Myanmar history, royal dynasties (Pagan, Toungoo, Konbaung), and notable historical figures extracted directly from Myanmar Wikipedia.
43
+
44
+ Curated and cleaned by **Aung Ko Ko Oo** (Founder, Burmese NLP Research Group).
45
+
46
+ ---
47
+
48
+ ## πŸ“Š Dataset Overview
49
+ - **Total Sentences:** `1,242`
50
+ - **Duplication Rate:** `0.00%` (100% unique clean sentences)
51
+ - **Data Type:** `Historical Narrative`
52
+ - **Source:** Myanmar Wikipedia (Attribution under CC BY-SA 4.0)
53
+
54
+ ---
55
+
56
+ ## πŸ“‚ Dataset Structure
57
+
58
+ | Column | Data Type | Description |
59
+ | :--- | :--- | :--- |
60
+ | `row_id` | String | Unique identifier (e.g., `MY_HIST_00001`) |
61
+ | `source_topic` | String | Wikipedia topic/entity title |
62
+ | `sentence` | String | Clean Myanmar sentence ending with standard boundary (`။`) |
63
+ | `data_type` | String | Text category (`Historical Narrative`) |
64
+
65
+ ---
66
+
67
+ ## πŸ’‘ Intended Use Cases
68
+ 1. **Retrieval-Augmented Generation (RAG):** Knowledge indexing for Burmese historical QA chatbots.
69
+ 2. **Sentence Embedding & Vector Search:** Benchmarking Burmese semantic similarity and clustering.
70
+ 3. **Information Extraction (IE):** Named Entity Recognition (NER) and Relation Extraction for Burmese history.
71
+
72
+ ---
73
+
74
+ ## πŸ’» How to Use
75
+
76
+ ### 1. Load via Hugging Face `datasets` Library
77
+ ```python
78
+ from datasets import load_dataset
79
+
80
+ # Load from Hugging Face Hub
81
+ dataset = load_dataset("austin2029/open-myanmar-data")
82
+ print(dataset['train'][0])
83
+
84
+ import pandas as pd
85
+
86
+ df = pd.read_csv("myanmar_kings/myanmar_kings_dataset.csv")
87
+ print(df.head())
88
+
89
+ @misc{open_myanmar_data_2026,
90
+ author = {Aung Ko Ko Oo},
91
+ title = {Open Myanmar Data: Myanmar Kings & Historical Narrative Dataset},
92
+ year = {2026},
93
+ publisher = {GitHub / Hugging Face},
94
+ howpublished = {\url{[https://github.com/Aung-Ko-Ko-Oo/open-myanmar-data](https://github.com/Aung-Ko-Ko-Oo/open-myanmar-data)}}
95
+ }
96
+
97
+
98
+