update and write configuration of this dataset
Browse files
README.md
CHANGED
@@ -1,3 +1,51 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
tags:
|
4 |
+
- khmer
|
5 |
+
- khmerhandwritten
|
6 |
+
- khmerdataset
|
7 |
+
- dataset
|
8 |
+
- khmer-handwritten-dataset
|
9 |
+
pretty_name: khmer handwritten dataset 4.2k images
|
10 |
+
---
|
11 |
+
|
12 |
+
4.2k images khmer handwritten Dataset
|
13 |
+
This repository contains a dataset of khmer handwritten dataset
|
14 |
+
|
15 |
+
Installation
|
16 |
+
Prerequisites
|
17 |
+
Before cloning this repository, make sure you have Git LFS installed:
|
18 |
+
|
19 |
+
Install Git LFS
|
20 |
+
Linux/macOS:
|
21 |
+
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
|
22 |
+
sudo apt install git-lfs
|
23 |
+
Windows: Download and install Git LFS from git-lfs.github.com
|
24 |
+
Clone the Repository
|
25 |
+
git clone https://github.com/SoyVitou/khmer-handwritten-dataset-4.2.git
|
26 |
+
cd khmer-handwritten-dataset-4.2
|
27 |
+
Pull LFS Files
|
28 |
+
git lfs install
|
29 |
+
git lfs pull
|
30 |
+
|
31 |
+
Usage
|
32 |
+
You can load the dataset using Python with Pandas:
|
33 |
+
|
34 |
+
import pandas as pd
|
35 |
+
|
36 |
+
# Load training set
|
37 |
+
df_train = pd.read_parquet("trainset.parquet")
|
38 |
+
print(df_train.head())
|
39 |
+
|
40 |
+
# Load validation set
|
41 |
+
df_valid = pd.read_parquet("validset.parquet")
|
42 |
+
print(df_valid.head())
|
43 |
+
|
44 |
+
# Load test set
|
45 |
+
df_test = pd.read_parquet("testset.parquet")
|
46 |
+
print(df_test.head())
|
47 |
+
License
|
48 |
+
[Specify your license here, e.g., MIT, Apache 2.0, etc.]
|
49 |
+
|
50 |
+
Contact
|
51 |
+
For any issues or inquiries, please contact telegram: 0964060587.
|