amjad-awad commited on
Commit
92324c6
·
verified ·
1 Parent(s): 9ec88a6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md CHANGED
@@ -28,4 +28,38 @@ configs:
28
  path: data/test-*
29
  ---
30
 
 
 
 
 
 
 
31
  [![Paper](https://img.shields.io/badge/Paper-black?style=flat-square&logo=arxiv)](https://arxiv.org/abs/2406.09630) | [![Dataset](https://img.shields.io/badge/Dataset-black?style=flat-square&logo=zenodo&logoColor=white&logoSize=auto)](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
  [![Paper](https://img.shields.io/badge/Paper-black?style=flat-square&logo=arxiv)](https://arxiv.org/abs/2406.09630) | [![Dataset](https://img.shields.io/badge/Dataset-black?style=flat-square&logo=zenodo&logoColor=white&logoSize=auto)](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
+ }