license: apache-2.0
language:
- my
- en
task_categories:
- text-generation
- question-answering
tags:
- code
- coding
- myanmar
- burmese
- llm
- instruction-tuning
- conversational
size_categories:
- 1M<n<10M
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
๐ฒ๐ฒ Myanmar LLM Coder Dataset (mm-llm-coder-dataset)
แแผแแบแแฌแแฌแแฌ Coding LLM แแปแฌแธ training แกแแฝแแบ แแแบแแฝแแบแแฌแธแแฑแฌ dataset
A bilingual (Myanmar + English) coding instruction dataset designed primarily for training Myanmar language Coder LLMs.
๐ฏ แแแบแแฝแแบแแปแแบ / Purpose
แค dataset แแแบ แแผแแบแแฌแแฌแแฌ programming/coding LLM แแปแฌแธ training แแฏแแบแแแบแกแแฝแแบ แกแแญแ แแแบแแฝแแบแแฌแธแแซแแแบแ แแผแแบแแฌ developer แแปแฌแธแ แแญแแแบแแฌแแฌแ แแฌแธแแผแแทแบ coding แกแแฐแกแแฎแแฑแธแแญแฏแแบแแฑแฌ AI assistant แแปแฌแธแแญแฏ แแแบแแฎแธแแญแฏแแบแ แฑแแแบ Myanmar (my) แแพแแทแบ English (en) แแฌแแฌแ แแฌแธ แแพแ แบแแปแญแฏแธแแผแแทแบ pair training data แแแทแบแแฝแแบแธแแฌแธแแซแแแบแ
This dataset is primarily intended for training Myanmar (Burmese) language Coder LLMs โ enabling AI coding assistants that natively understand and respond in แแผแแบแแฌแแฌแแฌ. Both English and Myanmar examples share the same schema for parallel/cross-lingual training.
๐ Dataset Statistics
| Metric | Value |
|---|---|
| Total Samples | 4,000,000 |
| Myanmar (my) | 2,000,000 |
| English (en) | 2,000,000 |
| Format | Parquet (Snappy compressed) |
| Files | data/train-00000-of-00004.parquet โฆ data/train-00003-of-00004.parquet |
| Splits | train (single split) |
๐๏ธ Schema
{
"instruction": str, # Topic/title of the Q&A
"messages": [ # Multi-turn conversation
{"role": "user", "content": str},
{"role": "assistant", "content": str},
... # 2 / 4 / 6 messages per sample
],
"category": str, # See categories below
"language": str, # "my" or "en"
"difficulty": str, # "beginner" | "intermediate" | "advanced"
"response": str, # JSON-serialized messages (string form)
"task_type": str, # "qa_conversation"
}
Categories (แ แแปแญแฏแธ)
code_debugging, mongodb_project, telegram_bot, ui_ux_design,
cloudflare_worker, deployment_help, api_integration,
firebase_project, website_builder
Difficulty Levels
beginner ยท intermediate ยท advanced
๐ Sample Examples
Myanmar (my)
{
"instruction": "React useEffect แแญแฏ StrictMode แแพแฌ แแพแ
แบแแผแญแแบ run แแฌ แแแบแแญแฏแแผแฑแแพแแบแธแแแฒ?",
"messages": [
{"role": "user", "content": "แแปแฝแแบแแฑแฌแทแบ useEffect แ development แแพแฌ แแพแ
แบแแผแญแแบ run แแฑแแซแแแบแ แแฌแแผแฑแฌแแทแบแแฒ?"},
{"role": "assistant", "content": "React 18 StrictMode แ side effects แแฝแฑแแญแฏ detect แแฏแแบแแญแฏแทแกแแฝแแบ effects แแฝแฑแแญแฏ แแพแ
แบแแผแญแแบแแฑแซแบแแซแแแบแ\n\n**แแผแฑแแพแแบแธแแแบแธ**: cleanup function แแแทแบแแซ..."}
],
"category": "code_debugging",
"language": "my",
"difficulty": "beginner",
"task_type": "qa_conversation"
}
English (en)
{
"instruction": "React useEffect runs twice in StrictMode - how to fix?",
"messages": [
{"role": "user", "content": "My useEffect is running twice in development. Why?"},
{"role": "assistant", "content": "React 18 StrictMode intentionally double-invokes effects to detect side effects..."}
],
"category": "code_debugging",
"language": "en",
"difficulty": "beginner",
"task_type": "qa_conversation"
}
๐ Usage
Load full dataset
from datasets import load_dataset
ds = load_dataset("amkyawdev/mm-llm-coder-dataset")
print(ds)
# DatasetDict({ train: Dataset(num_rows=4000000, ...) })
Filter by language
# Myanmar only โ for Myanmar-focused fine-tuning
my_data = ds["train"].filter(lambda x: x["language"] == "my")
# English only โ for cross-lingual / parallel training
en_data = ds["train"].filter(lambda x: x["language"] == "en")
Filter by category & difficulty
debugging_advanced = ds["train"].filter(
lambda x: x["category"] == "code_debugging" and x["difficulty"] == "advanced"
)
Streaming (recommended for large-scale training)
ds = load_dataset("amkyawdev/mm-llm-coder-dataset", streaming=True)
for sample in ds["train"]:
print(sample["language"], sample["instruction"])
break
๐ Use Cases
- ๐ฒ๐ฒ Myanmar Coder LLM training โ fine-tune base models (Llama, Qwen, Mistral, etc.) into Myanmar-language coding assistants
- Cross-lingual code Q&A โ train models that handle both Myanmar and English coding queries
- Instruction tuning โ multi-turn conversation format suitable for chat models
- Code debugging assistants โ error fixing patterns across React, Node.js, MongoDB, WebSocket, etc.
- Topic-specific fine-tuning โ filter by category (e.g., MongoDB-only, Firebase-only)
๐ Related Datasets
This dataset is part of the combined Myanmar LLM dataset collection by @amkyawdev:
- chat-skill โ amkyawdev/myanmar-llm-data โ conversational data, translations, general Q&A
- agent-skill โ amkyawdev/mm-llm-coder-agent-dataset โ agentic coding tasks
- code-skill โ this dataset โ code generation, debugging, and Q&A
โ ๏ธ Notes / Caveats
- The dataset is template-based: the 4M samples are produced by combining a curated set of coding instructions with category ร difficulty ร conversation-length variations. This makes the dataset large and structurally consistent, but with limited semantic diversity per topic.
- For higher-quality, more diverse Myanmar samples, you may consider augmenting with LLM-generated translations of curated English programming Q&A.
- Both
messages(list) andresponse(JSON string) fields contain the same conversation โ use whichever your training pipeline prefers.
๐ License
Apache 2.0
๐ Citation
If you use this dataset in your work, please cite:
@dataset{amkyawdev_mm_llm_coder_2025,
author = {amkyawdev},
title = {Myanmar LLM Coder Dataset (mm-llm-coder-dataset)},
year = {2025},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/amkyawdev/mm-llm-coder-dataset}
}