BatSilver commited on
Commit
871addc
·
verified ·
1 Parent(s): 47db104

Upload README File

Browse files
Files changed (1) hide show
  1. README.md +39 -1
README.md CHANGED
@@ -1,3 +1,41 @@
 
 
 
1
  ---
2
- license: mit
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ```