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