BatSilver commited on
Commit
0a0373d
·
verified ·
1 Parent(s): 871addc

Updated README

Browse files
Files changed (1) hide show
  1. README.md +52 -40
README.md CHANGED
@@ -1,41 +1,53 @@
1
- # Text Recognition Dataset
2
- This dataset is a comprehensive collection of Arabic and English text recognition samples designed for benchmarking and evaluating text recognition models. The dataset combines multiple sources to provide diverse text recognition challenges across different domains, scripts, and image conditions.
3
-
4
- ---
5
-
6
- ## 📁 Dataset Structure
7
- - Images are stored in .png format ()
8
- - Accompanied by a CSV file (TextRecognitionAnnotations.csv) with ground truth annotations and text characteristics.
9
- ---
10
-
11
- ## 📊Dataset Statistics
12
- | Metric | Value |
13
- |----------------|----------------------------------------|
14
- | Total Images | 3243 |
15
- | Languages | English and Arabic |
16
- | Image Format | `.png` |
17
-
18
- ---
19
-
20
- ## 📊 Data Insights
21
-
22
- **🌍Text Characteristics**
23
- | Characteristic | Values |
24
- |----------------|----------------------------------------|
25
- | Language | Arabic, English |
26
- | Type of Word | String, Number, Character and Mixed |
27
- | Text Type | Typed and Handwritten |
28
- | Image Category | scene_text, medical_prescription, handwritten |
29
-
30
-
31
-
32
- ---
33
-
34
- # 🛠️ How to Use
35
- You can load the dataset using:
36
-
37
- ```python
38
- from datasets import load_dataset
39
-
40
- ds = load_dataset("Ejada/TextRecognitionData")
 
 
 
 
 
 
 
 
 
 
 
 
41
  ```
 
1
+ # Text Recognition Dataset
2
+ This dataset is a comprehensive collection of Arabic and English text recognition samples designed for benchmarking and evaluating text recognition models. The dataset combines multiple sources to provide diverse text recognition challenges across different domains, scripts, and image conditions.
3
+
4
+ ---
5
+
6
+ ## 📁 Dataset Structure
7
+ - Images are stored in .png format ()
8
+ - Accompanied by a CSV file (TextRecognitionAnnotations.csv) with ground truth annotations and text characteristics.
9
+ ---
10
+
11
+ ## 📚 Data Sources and Attribution
12
+
13
+ This dataset is compiled from samples taken from the following sources:
14
+
15
+ - **EvArEST Dataset**: Arabic scene text samples from [HGamal11/EvArEST-dataset-for-Arabic-scene-text](https://github.com/HGamal11/EvArEST-dataset-for-Arabic-scene-text)
16
+ - **Doctors Handwritten Prescription BD Dataset**: Medical prescription samples from [Kaggle - mamun1113](https://www.kaggle.com/datasets/mamun1113/doctors-handwritten-prescription-bd-dataset)
17
+ - **AHAWP Per User Dataset**: Handwritten Arabic text samples from [Kaggle - mohammedfa](https://www.kaggle.com/datasets/mohammedfa/ahawp-per-user)
18
+
19
+ *Note: This dataset contains selected samples from the above sources, with additional text characteristics and annotations added for comprehensive text recognition evaluation.*
20
+ ---
21
+
22
+
23
+ ## 📊Dataset Statistics
24
+ | Metric | Value |
25
+ |----------------|----------------------------------------|
26
+ | Total Images | 3243 |
27
+ | Languages | English and Arabic |
28
+ | Image Format | `.png` |
29
+
30
+ ---
31
+
32
+ ## 📊 Data Insights
33
+
34
+ **🌍Text Characteristics**
35
+ | Characteristic | Values |
36
+ |----------------|----------------------------------------|
37
+ | Language | Arabic, English |
38
+ | Type of Word | String, Number, Character and Mixed |
39
+ | Text Type | Typed and Handwritten |
40
+ | Image Category | scene_text, medical_prescription, handwritten |
41
+
42
+
43
+
44
+ ---
45
+
46
+ # 🛠️ How to Use
47
+ You can load the dataset using:
48
+
49
+ ```python
50
+ from datasets import load_dataset
51
+
52
+ ds = load_dataset("Ejada/TextRecognitionData")
53
  ```