Datasets:
Update dataset/README.md
Browse files- dataset/README.md +24 -1
dataset/README.md
CHANGED
@@ -1 +1,24 @@
|
|
1 |
-
# myOCR Dataset
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# myOCR Dataset
|
2 |
+
|
3 |
+
## Dataset Preparation
|
4 |
+
|
5 |
+
### **On Windows**
|
6 |
+
1. Right-click the `Images.zip` file.
|
7 |
+
2. Select **"Extract All…"** or use a tool like **7-Zip** or **WinRAR** for advanced extraction options.
|
8 |
+
|
9 |
+
### **On macOS**
|
10 |
+
1. Double-click the `.zip` file. It will automatically extract in the same directory.
|
11 |
+
2. Alternatively, use **Terminal**:
|
12 |
+
```bash
|
13 |
+
unzip Images.zip
|
14 |
+
```
|
15 |
+
|
16 |
+
### **On Linux**
|
17 |
+
1. Use a file manager to extract, or use the terminal:
|
18 |
+
```bash
|
19 |
+
unzip Images.zip
|
20 |
+
```
|
21 |
+
If `unzip` is not installed, you can install it via:
|
22 |
+
```bash
|
23 |
+
sudo apt-get install unzip
|
24 |
+
```
|