Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# 62k Khmer-English Printed Dataset
|
2 |
|
3 |
This repository contains a dataset of Khmer and English printed text images for training, validation, and testing. The dataset is stored in `parquet` format and managed using Git Large File Storage (LFS).
|
@@ -43,6 +59,10 @@ import pandas as pd
|
|
43 |
df_train = pd.read_parquet("trainset.parquet")
|
44 |
print(df_train.head())
|
45 |
|
|
|
|
|
|
|
|
|
46 |
# Load test set
|
47 |
df_test = pd.read_parquet("testset.parquet")
|
48 |
print(df_test.head())
|
@@ -52,4 +72,4 @@ print(df_test.head())
|
|
52 |
[Specify your license here, e.g., MIT, Apache 2.0, etc.]
|
53 |
|
54 |
## Contact
|
55 |
-
For any issues or inquiries, please contact [your email or GitHub profile].
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
task_categories:
|
4 |
+
- text-generation
|
5 |
+
- image-classification
|
6 |
+
language:
|
7 |
+
- km
|
8 |
+
- en
|
9 |
+
tags:
|
10 |
+
- ocr
|
11 |
+
- khmerocr
|
12 |
+
- font-printed-text-dataset
|
13 |
+
pretty_name: Khmer-Printed-Text-Dataset
|
14 |
+
size_categories:
|
15 |
+
- 10K<n<100K
|
16 |
+
---
|
17 |
# 62k Khmer-English Printed Dataset
|
18 |
|
19 |
This repository contains a dataset of Khmer and English printed text images for training, validation, and testing. The dataset is stored in `parquet` format and managed using Git Large File Storage (LFS).
|
|
|
59 |
df_train = pd.read_parquet("trainset.parquet")
|
60 |
print(df_train.head())
|
61 |
|
62 |
+
# Load validation set
|
63 |
+
df_valid = pd.read_parquet("validset.parquet")
|
64 |
+
print(df_valid.head())
|
65 |
+
|
66 |
# Load test set
|
67 |
df_test = pd.read_parquet("testset.parquet")
|
68 |
print(df_test.head())
|
|
|
72 |
[Specify your license here, e.g., MIT, Apache 2.0, etc.]
|
73 |
|
74 |
## Contact
|
75 |
+
For any issues or inquiries, please contact [your email or GitHub profile].
|