Empatixx commited on
Commit
51fe055
·
verified ·
1 Parent(s): f589490

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -10
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 organized into 46 Parquet files for efficient storage and loading:
46
 
47
  ```
48
  data/
49
- ├── batch_0000.parquet # 10,000 samples
50
- ├── batch_0001.parquet # 10,000 samples
51
- ├── ...
52
- ├── batch_0044.parquet # 10,000 samples
53
- ├── batch_0045.parquet # 4,820 samples
54
- └── metadata.json # Dataset metadata
55
  ```
56
 
57
- Each Parquet file contains three columns:
58
- - `image`: Binary image data (JPEG format)
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