jwidmer commited on
Commit
031b324
·
verified ·
1 Parent(s): cffe10a

Update dataset card

Browse files
Files changed (1) hide show
  1. README.md +121 -0
README.md ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ config_name: default
4
+ features:
5
+ - name: image
6
+ dtype:
7
+ image:
8
+ decode: false
9
+ - name: text
10
+ dtype: string
11
+ - name: line_id
12
+ dtype: string
13
+ - name: line_reading_order
14
+ dtype: int64
15
+ - name: line_coords
16
+ dtype:
17
+ sequence:
18
+ sequence: int64
19
+ - name: line_baseline
20
+ dtype:
21
+ sequence:
22
+ sequence: int64
23
+ - name: line_augmentation
24
+ dtype: string
25
+ - name: region_id
26
+ dtype: string
27
+ - name: region_reading_order
28
+ dtype: int64
29
+ - name: region_type
30
+ dtype: string
31
+ - name: region_coords
32
+ dtype:
33
+ sequence:
34
+ sequence: int64
35
+ - name: filename
36
+ dtype: string
37
+ - name: project_name
38
+ dtype: string
39
+ splits:
40
+ - name: train
41
+ num_examples: 825
42
+ num_bytes: 124441446
43
+ download_size: 124441446
44
+ dataset_size: 124441446
45
+ configs:
46
+ - config_name: default
47
+ data_files:
48
+ - split: train
49
+ path: data/train/**/*.parquet
50
+ tags:
51
+ - image-to-text
52
+ - htr
53
+ - trocr
54
+ - transcription
55
+ - pagexml
56
+ license: mit
57
+ ---
58
+
59
+ # Dataset Card for test-powerserver-preprocessing-lines
60
+
61
+ This dataset was created using pagexml-hf converter from Transkribus PageXML data.
62
+
63
+ ## Dataset Summary
64
+
65
+ This dataset contains 825 samples across 1 split(s).
66
+
67
+ ## Dataset Structure
68
+
69
+ ### Data Splits
70
+
71
+ - **train**: 825 samples
72
+
73
+ ### Dataset Size
74
+
75
+ - Approximate total size: 118.68 MB
76
+ - Total samples: 825
77
+
78
+ ### Features
79
+
80
+ - **image**: `Image(mode=None, decode=False)`
81
+ - **text**: `Value('string')`
82
+ - **line_id**: `Value('string')`
83
+ - **line_reading_order**: `Value('int64')`
84
+ - **line_coords**: `List(List(Value('int64')))`
85
+ - **line_baseline**: `List(List(Value('int64')))`
86
+ - **line_augmentation**: `Value('string')`
87
+ - **region_id**: `Value('string')`
88
+ - **region_reading_order**: `Value('int64')`
89
+ - **region_type**: `Value('string')`
90
+ - **region_coords**: `List(List(Value('int64')))`
91
+ - **filename**: `Value('string')`
92
+ - **project_name**: `Value('string')`
93
+
94
+ ## Data Organization
95
+
96
+ Data is organized as parquet shards by split and project:
97
+ ```
98
+ data/
99
+ ├── <split>/
100
+ │ └── <project_name>/
101
+ │ └── <timestamp>-<shard>.parquet
102
+ ```
103
+
104
+ The HuggingFace Hub automatically merges all parquet files when loading the dataset.
105
+
106
+ ## Usage
107
+
108
+ ```python
109
+ from datasets import load_dataset
110
+
111
+ # Load entire dataset
112
+ dataset = load_dataset("jwidmer/test-powerserver-preprocessing-lines")
113
+
114
+ # Load specific split
115
+ train_dataset = load_dataset("jwidmer/test-powerserver-preprocessing-lines", split="train")
116
+ ```
117
+
118
+ ### Projects Included
119
+
120
+ 1507-05-13_Hanserezess,_Lübeck_Ascensio_Domini_1507_(SAHST_Rep__2,_I_040-6)
121
+