sherif1313/Arabic-handwritten-OCR-4bit-Qwen2.5-VL-3B-v3
Image-Text-to-Text • 4B • Updated • 10.4k • 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.
This dataset contains 1,218 full page images of Arabic handwriting and the corresponding text. The images are Manuscripts from the 19th to 21st century. See the official code, paper, and zenodo archive below. Their work has been accepted to NeurIPS 2024.
from datasets import load_dataset
import matplotlib.pyplot as plt
# Load your dataset in streaming mode to be loaded faster
# https://huggingface.co/docs/datasets/v1.10.1/dataset_streaming.html
ds = load_dataset("Omarkhaledok/muharaf-public-pages", streaming=True)
# Take one sample from the training set
sample = next(iter(ds['train']))
# Number of samples to visualize
SAMPLE_SIZE=1
# Display the image using matplotlib
plt.imshow(sample['image'])
plt.axis('off') # Hide axes for better visualization
plt.show()
# Print the corresponding text
print("Corresponding text:")
print(sample['text'])
# # Example: iterate through 5 samples and visualize them
# # Uncode the following lines to visualize `SAMPLE_SIZE` of images and the corresponding text
# for i, sample in enumerate(ds['train']):
# if i >= SAMPLE_SIZE:
# break
# plt.imshow(sample['image'])
# plt.axis('off')
# plt.title(f"Sample {i+1}")
# plt.show()
# print("Text:", sample['text'])
# print("-"*50)
If you are using this dataset in your work, please cite the official paper below.
@inproceedings{
saeed2024muharaf,
title={Muharaf: Manuscripts of Handwritten Arabic Dataset for Cursive Text Recognition},
author={Mehreen Saeed and Adrian Chan and Anupam Mijar and Joseph Moukarzel and Gerges Habchi and Carlos Younes and Amin Elias and Chau-Wai Wong and Akram Khater},
booktitle={The Thirty-eight Conference on Neural Information Processing Systems Datasets and Benchmarks Track},
year={2024},
url={https://openreview.net/forum?id=1s8l1tnTXW}
}