Update README.md
Browse files
README.md
CHANGED
@@ -42,22 +42,20 @@ This dataset consists of synthetically generated images of Czech text, designed
|
|
42 |
|
43 |
## Dataset Structure
|
44 |
|
45 |
-
The dataset is
|
46 |
|
47 |
```
|
48 |
data/
|
49 |
-
├──
|
50 |
-
├──
|
51 |
-
├──
|
52 |
-
├──
|
53 |
-
|
54 |
-
└── metadata.json # Dataset metadata
|
55 |
```
|
56 |
|
57 |
-
Each Parquet file contains
|
58 |
-
- `image`:
|
59 |
- `text`: Ground truth text transcription
|
60 |
-
- `image_path`: Original file path (for reference)
|
61 |
|
62 |
## Usage
|
63 |
|
|
|
42 |
|
43 |
## Dataset Structure
|
44 |
|
45 |
+
The dataset is stored in HuggingFace's optimized format with automatic image display support:
|
46 |
|
47 |
```
|
48 |
data/
|
49 |
+
├── train-00000-of-00005-*.parquet
|
50 |
+
├── train-00001-of-00005-*.parquet
|
51 |
+
├── train-00002-of-00005-*.parquet
|
52 |
+
├── train-00003-of-00005-*.parquet
|
53 |
+
└── train-00004-of-00005-*.parquet
|
|
|
54 |
```
|
55 |
|
56 |
+
Each Parquet file contains two columns:
|
57 |
+
- `image`: PIL Image object (JPEG format, automatically displayed in dataset viewer)
|
58 |
- `text`: Ground truth text transcription
|
|
|
59 |
|
60 |
## Usage
|
61 |
|