Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
image
imagewidth (px)
28
28
label
class label
10 classes
8
8
7
0
6
2
1
1
3
8
6
9
5
2
2
3
8
1
8
8
1
2
5
9
0
4
1
8
7
3
1
5
9
0
5
6
4
7
4
7
7
6
3
4
6
5
8
9
2
9
6
3
0
8
9
6
7
7
7
2
9
5
9
6
0
0
5
1
0
7
3
4
7
2
8
3
8
9
9
3
6
3
0
2
5
3
6
3
6
7
7
2
5
1
2
0
1
2
8
4
End of preview. Expand in Data Studio

Burmese Handwritten Digit Dataset (BHDD)

BHDD is the first publicly available dataset for handwritten Burmese (Myanmar) digit recognition — the Burmese counterpart to MNIST.

87,561 grayscale images (28×28 px) of handwritten Burmese digits across 10 classes, collected from over 150 contributors.

Split Samples Balanced?
Train 60,000 Yes (6,000 per class)
Test 27,561 No (natural frequency)

The train/test split is by contributor — no writer's handwriting appears in both sets.

Quick Start

from datasets import load_dataset

ds = load_dataset("expa-ai/BHDD")

# Access a sample
sample = ds["train"][0]
sample["image"]  # PIL Image (28x28 grayscale)
sample["label"]  # int 0–9

With PyTorch:

from datasets import load_dataset
from torchvision import transforms

ds = load_dataset("expa-ai/BHDD")

transform = transforms.Compose([
    transforms.ToTensor(),
    transforms.Normalize((0.5,), (0.5,)),
])

def preprocess(example):
    example["image"] = transform(example["image"].convert("L"))
    return example

ds = ds.map(preprocess)
ds.set_format(type="torch", columns=["image", "label"])

Dataset Details

  • Format: 28×28 grayscale (uint8, 0–255), integer labels 0–9
  • Script: Myanmar (Burmese), called sar-lone ("round script")
  • Collection: The Expa.AI Research Team organized a community collection. Contributors wrote digits on A4 paper; the team photographed sheets with phone cameras and extracted digits using an Android app with adaptive thresholding and contour detection
  • Quality: 20-member annotation team reviewed samples, then two data engineers did a final pass. No duplicates exist within or across splits

Baseline Results

Model Accuracy Macro F1 Parameters
MLP (2 hidden layers) 99.40% 0.993
CNN (2 conv layers) 99.75% 0.996 421K
Improved CNN (3 conv + BN + augmentation) 99.83% 0.998 431K

Only 47 of 27,561 test samples are misclassified by the best model. Errors cluster around the 0–1 pair (closed vs. open circle).

Citation

@article{aung2025bhdd,
  title   = {{BHDD}: A Burmese Handwritten Digit Dataset},
  author  = {Swan Htet Aung and Hein Htet and Htoo Say Wah Khaing and Thuya Myo Nyunt},
  year    = {2025},
  eprint  = {2603.21966},
  archivePrefix = {arXiv},
  primaryClass  = {cs.CV},
  url     = {https://arxiv.org/abs/2603.21966}
}

Links

Contributors

  • Swan Htet Aung — Lead Researcher, Expa.AI
  • Hein Htet — Research Engineer, Expa.AI
  • Htoo Say Wah Khaing — Data Engineer, Expa.AI
  • Thuya Myo Nyunt — Technical Lead, Expa.AI
Downloads last month
12

Paper for expa-ai/BHDD