Update README.md
Browse files
README.md
CHANGED
|
@@ -28,4 +28,38 @@ configs:
|
|
| 28 |
path: data/test-*
|
| 29 |
---
|
| 30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
[](https://arxiv.org/abs/2406.09630) | [](https://zenodo.org/records/11492215)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
path: data/test-*
|
| 29 |
---
|
| 30 |
|
| 31 |
+
## Dataset Description
|
| 32 |
+
|
| 33 |
+
This dataset is a re-uploaded version of the **Muharaf** dataset.
|
| 34 |
+
The original dataset was created by Mehreen Saeed et al. and released for research purposes.
|
| 35 |
+
This repository is intended for easier access and experimentation via Hugging Face.
|
| 36 |
+
|
| 37 |
[](https://arxiv.org/abs/2406.09630) | [](https://zenodo.org/records/11492215)
|
| 38 |
+
|
| 39 |
+
# How to use
|
| 40 |
+
```python
|
| 41 |
+
from datasets import load_dataset
|
| 42 |
+
|
| 43 |
+
ds = load_dataset("amjad-awad/Arabic-Handwritten-Text-Recognition-Dataset")
|
| 44 |
+
|
| 45 |
+
print(ds["train"][0]["image"])
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
## Attribution
|
| 49 |
+
|
| 50 |
+
All credit for creating and curating this dataset goes to the original authors.
|
| 51 |
+
This Hugging Face repository does **not** claim ownership of the data.
|
| 52 |
+
|
| 53 |
+
## Citation
|
| 54 |
+
|
| 55 |
+
If you use this dataset in your research, please cite the **original paper**:
|
| 56 |
+
|
| 57 |
+
```bibtex
|
| 58 |
+
@inproceedings{
|
| 59 |
+
saeed2024muharaf,
|
| 60 |
+
title={Muharaf: Manuscripts of Handwritten Arabic Dataset for Cursive Text Recognition},
|
| 61 |
+
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},
|
| 62 |
+
booktitle={The Thirty-eight Conference on Neural Information Processing Systems Datasets and Benchmarks Track},
|
| 63 |
+
year={2024},
|
| 64 |
+
url={https://openreview.net/forum?id=1s8l1tnTXW}
|
| 65 |
+
}
|