File size: 2,867 Bytes
dfabeff
4eb6732
 
 
 
 
 
 
 
 
 
 
dfabeff
 
 
 
 
 
 
 
 
 
 
 
 
 
4eb6732
 
 
 
 
 
 
dfabeff
4eb6732
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
---
language:
- my
license: cc-by-4.0
tags:
- myanmar
- burmese
- history
- nlp
- text-classification
- rag
pretty_name: Open Myanmar Data - Myanmar Kings & Historical Narrative Dataset
dataset_info:
  features:
  - name: row_id
    dtype: string
  - name: source_topic
    dtype: string
  - name: sentence
    dtype: string
  - name: data_type
    dtype: string
  splits:
  - name: train
    num_bytes: 587678
    num_examples: 1242
    download_size: 174897
    dataset_size: 587678
  configs:
  - config_name: default
    data_files:
    - split: train
      path: data/train-*
---

# πŸ‡²πŸ‡² Open Myanmar Data: Myanmar Kings & Historical Narrative Dataset

[![License: CC BY 4.0](https://img.shields.io/badge/License-CC_BY_4.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/)
[![Hugging Face](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Datasets-blue)](https://huggingface.co/datasets)

## πŸ“Œ Dataset Summary
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.

Curated and cleaned by **Aung Ko Ko Oo** (Founder, Burmese NLP Research Group).

---

## πŸ“Š Dataset Overview
- **Total Sentences:** `1,242`
- **Duplication Rate:** `0.00%` (100% unique clean sentences)
- **Data Type:** `Historical Narrative`
- **Source:** Myanmar Wikipedia (Attribution under CC BY-SA 4.0)

---

## πŸ“‚ Dataset Structure

| Column | Data Type | Description |
| :--- | :--- | :--- |
| `row_id` | String | Unique identifier (e.g., `MY_HIST_00001`) |
| `source_topic` | String | Wikipedia topic/entity title |
| `sentence` | String | Clean Myanmar sentence ending with standard boundary (`။`) |
| `data_type` | String | Text category (`Historical Narrative`) |

---

## πŸ’‘ Intended Use Cases
1. **Retrieval-Augmented Generation (RAG):** Knowledge indexing for Burmese historical QA chatbots.
2. **Sentence Embedding & Vector Search:** Benchmarking Burmese semantic similarity and clustering.
3. **Information Extraction (IE):** Named Entity Recognition (NER) and Relation Extraction for Burmese history.

---

## πŸ’» How to Use

### 1. Load via Hugging Face `datasets` Library
```python
from datasets import load_dataset

# Load from Hugging Face Hub
dataset = load_dataset("austin2029/open-myanmar-data")
print(dataset['train'][0])

import pandas as pd

df = pd.read_csv("myanmar_kings/myanmar_kings_dataset.csv")
print(df.head())

@misc{open_myanmar_data_2026,
  author = {Aung Ko Ko Oo},
  title = {Open Myanmar Data: Myanmar Kings & Historical Narrative Dataset},
  year = {2026},
  publisher = {GitHub / Hugging Face},
  howpublished = {\url{[https://github.com/Aung-Ko-Ko-Oo/open-myanmar-data](https://github.com/Aung-Ko-Ko-Oo/open-myanmar-data)}}
}