Search Data Lam Hnyin Articles

Open Access Data Initiative

Human-Written Myanmar Text Corpus & API

A standardized, curated, and machine-readable Burmese text repository extracted from genuine, human-verified reviews and technical literature. Free for open-source AI training, LLM pre-training, evaluation benchmarks, and linguistic research.

Domain & Category Distribution

Linguistic balance across genres, weighted by rule-based segmented syllables.

1 Domains Active
Essays & Thoughts100%
1 Article46 Syllables
Scrapable Articles

1

100% Human-Authored
Total Characters

151

Unicode (Mymr)
Total Syllables

46

Rule-based Tokenized
Total Paragraphs

1

Clean Segmentations
License

CC-BY-4.0

Open Research & Commercial

Direct Downloads (One-Click)

Select your preferred format to immediately download the latest corpus dump snapshot.

JSONStructured

Standard JSON Array

Full dataset with rich document-level metadata, paragraph splits, and metrics.

Download JSON
JSONLLLM Standard

JSON Lines

Optimal format for OpenAI, Hugging Face Datasets, and distributed streaming.

Download JSONL
TXTRaw Body Only

Plain Text Corpus

Clean Burmese text without metadata headers. Ready for Byte-Pair (BPE) tokenizers.

Download TXT
CSVTabular

Comma-Separated

Ready for spreadsheet inspection, Pandas tabular pipelines, and SQL ingestion.

Download CSV
SENTENCESLine-by-Line

Myanmar Sentence Corpus

Clean, segmented Burmese sentences split line-by-line (။). Perfect for NLP sentence transformers & translation models.

Download Sentences (TXT)
TSVTab-Delimited

Tab-Separated

Clean delimiter structure that avoids comma conflicts within complex prose.

Download TSV

API Reference & Direct Endpoints

Access static endpoints programmatically without API keys or rate limits.

JSONhttps://articles.datalamhnyin.site/api/corpus.json
JSONLhttps://articles.datalamhnyin.site/api/corpus.jsonl
TXThttps://articles.datalamhnyin.site/api/corpus.txt
CSVhttps://articles.datalamhnyin.site/api/corpus.csv
TSVhttps://articles.datalamhnyin.site/api/corpus.tsv

Programmatic Ingestion Examples

Copy and execute directly in your Jupyter Notebooks, Google Colab, or pipelines.

Python (Pandas DataFrame)
import pandas as pd

# Load CSV corpus directly into a DataFrame
df = pd.read_csv("https://articles.datalamhnyin.site/api/corpus.csv")

print(f"Loaded {len(df)} documents")
print(df[["title", "char_count", "published_date"]].head())
Python (Streaming JSONL for LLM Training)
import requests
import json

response = requests.get("https://articles.datalamhnyin.site/api/corpus.jsonl")

# Stream document entries
for line in response.iter_lines():
    if line:
        record = json.loads(line.decode("utf-8"))
        print("ID:", record["id"])
        print("Burmese Text:", record["text"][:100], "...")
cURL (Download Raw Text)
curl -s "https://articles.datalamhnyin.site/api/corpus.txt" -o myanmar_raw_corpus.txt

Why Human-Crafted Burmese Data Matters

Low-resource language AI systems often suffer from synthetic hallucination loops caused by training on machine-translated or uncurated web-scraped noise. The Data Lam Hnyin corpus initiative provides human-authored, peer-reviewed, and technically aligned Myanmar text.

Every scrapable entry on this platform is verified for standard Myanmar Unicode encoding, linguistic naturalness, and domain accuracy. We encourage developers, researchers, and NLP enthusiasts to utilize this data to benchmark tokenizers, train language models, and evaluate machine translation performance.