suchut commited on
Commit
e178c38
1 Parent(s): e7b2071

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -3
README.md CHANGED
@@ -1,3 +1,36 @@
1
- ---
2
- license: cc-by-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - th
4
+ - en
5
+ tags:
6
+ - OCR
7
+ - dataset
8
+ - evaluation
9
+ - multilingual
10
+ - handwritten
11
+ license: cc-by-sa-4.0
12
+ ---
13
+
14
+ # ThaiTROCR Evaluation Dataset
15
+
16
+ ## Dataset Description
17
+
18
+ The **ThaiTROCR Evaluation Dataset** is designed for evaluating Optical Character Recognition (OCR) models across various domains. It includes images and textual data derived from various open-source websites.
19
+ This dataset aims to provide a comprehensive evaluation resource for researchers and developers working on OCR systems, particularly in Thai language processing.
20
+
21
+ ### Data Fields
22
+
23
+ Each sample in the dataset contains the following fields:
24
+
25
+ - `image`: Path to the image file.
26
+ - `text`: Ground truth text extracted from the image.
27
+ - `category`: The domain/category of the image (e.g., "handwritten", "document", "scene_text").
28
+
29
+ ## Usage
30
+
31
+ To load the dataset, you can use the following code:
32
+
33
+ ```python
34
+ from datasets import load_dataset
35
+
36
+ dataset = load_dataset("suchut/thaitrocr-eval-dataset-beta")