Ali0044/Qalam_Net_V2
Image-Text-to-Text • 0.3B • Updated • 18 • 1
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
The Arabic OCR Dataset is a comprehensive resource aimed at enhancing Optical Character Recognition (OCR) capabilities for the Arabic language. The dataset consists of over 2 million labeled images of Arabic text extracted from diverse sources, ideal for training and benchmarking Arabic OCR models.
Each entry in the dataset includes:
image: An image file containing Arabic text.text: Corresponding Arabic text as ground truth.The images vary in width from 29px to 222px, containing text samples ranging from 7 to 10 characters in length.
This dataset is designed for:
from datasets import load_dataset
# Load Arabic OCR Dataset
dataset = load_dataset("mssqapi/Arabic-OCR-Dataset")
# Example of accessing data sample
sample = dataset['train'][0]
print(sample['text'])
display(sample['image'])