Datasets:
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
# Thai OCR Evaluation Dataset
|
15 |
+
|
16 |
+
## Dataset Description
|
17 |
+
|
18 |
+
The **Thai OCR 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("openthaigpt/thai-ocr-evaluation")
|