Update README.md
Browse files
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 |
-
|
| 17 |
-
|
| 18 |
-
configs:
|
| 19 |
-
- config_name: default
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 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 |
+
[](https://creativecommons.org/licenses/by/4.0/)
|
| 39 |
+
[](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 |
+
|