--- dataset_info: features: - name: image dtype: image - name: text dtype: string - name: style dtype: string splits: - name: train num_bytes: 532905094.304 num_examples: 41664 download_size: 266331659 dataset_size: 532905094.304 configs: - config_name: default data_files: - split: train path: data/train-* language: - my size_categories: - 10K Variety of Myanmar spellings and writings are included > (မြန်မာထက္ခရာတွေနဲ့ α€…α€€α€¬α€Έα€œα€―α€Άα€Έα€™α€»α€­α€―α€Έα€…α€―α€Άα€•α€«α€α€„α€Ία€•α€«α€α€šα€Ί) --- ## 🎨 Style Variations Each text appears in **32 visual styles** with differences in: - font - color - texture - rotation (small angle) - background patterns This helps models generalize across real-world environments. --- ## 🧩 Data Format Each sample includes: | Column | Type | Description | |--------|------|-------------| | `image` | image | 512Γ—512 Burmese rendered text | | `text` | string | Ground truth Burmese label | | `style` | string | Style ID (e.g., `style_01`) | Example record: ```json { "image": "", "text": "မြန်မာနိုင်ငဢ", "style": "style_07" } ``` --- ## πŸ§ͺ Usage ```python from datasets import load_dataset ds = load_dataset("kalixlouiis/MyanmarOCR-ImageText", split="train") print(ds[0]) ds[0]["image"].show() ``` --- ## 🎯 Intended Purposes - Burmese OCR training - Scene text model finetuning - Vision-language pretraining - Synthetic-to-real text recognition research - Benchmark for Myanmar multimodal AI --- ## ⚠️ Limitations - Synthetic images only β€” not real photos/signboards - No English text or punctuation - No complex layout structures (single word/short text per image) --- ## πŸ“„ License This dataset is released under the **Creative Commons Attribution 4.0 International (CC-BY-4.0)** license. You are free to: - βœ” Share β€” copy and redistribute for any purpose - βœ” Adapt β€” modify, transform, and build upon the data As long as you: - **Give appropriate credit** - **Indicate changes** - **Provide a link to the license** πŸ“Œ License Text: https://creativecommons.org/licenses/by/4.0/ --- ## ✨ Acknowledgment Created by **[@kalixlouiis](https://huggingface.co/kalixlouiis)** with the goal of improving **Myanmar OCR and AI research**. If you use this dataset in your research or applications, please cite and provide a link to the dataset page on Hugging Face: πŸ”— https://huggingface.co/datasets/kalixlouiis/MyanmarOCR-ImageText --- ## πŸ“š Citation ```bibtex @dataset{kalixlouiis2025myanmarocr, title = {MyanmarOCR-ImageText}, author = {Kalix Louis}, year = {2025}, publisher = {Hugging Face}, howpublished = {\url{https://huggingface.co/datasets/kalixlouiis/MyanmarOCR-ImageText}}, license = {CC-BY-4.0} } ``` ---