Datasets:

Modalities:
Image
Text
ArXiv:
Libraries:
Datasets
License:
davanstrien HF Staff commited on
Commit
373fa5c
·
1 Parent(s): bff3efe

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -83
README.md CHANGED
@@ -91,121 +91,65 @@ This dataset has two configurations. These configurations both cover the same da
91
  An example instance from the COCO config:
92
 
93
  ```
94
- {'height': 2944,
95
- 'image': <PIL.PngImagePlugin.PngImageFile image mode=L size=2064x2944 at 0x7FA413CDA210>,
96
  'image_id': 0,
97
- 'objects': [{'area': 435956,
98
- 'bbox': [0.0, 244.0, 1493.0, 292.0],
99
- 'category_id': 0,
100
  'id': 0,
101
  'image_id': '0',
102
  'iscrowd': False,
103
  'segmentation': []},
104
- {'area': 88234,
105
- 'bbox': [305.0, 127.0, 562.0, 157.0],
106
  'category_id': 2,
107
  'id': 0,
108
  'image_id': '0',
109
  'iscrowd': False,
110
  'segmentation': []},
111
- {'area': 5244,
112
- 'bbox': [1416.0, 196.0, 92.0, 57.0],
113
  'category_id': 2,
114
  'id': 0,
115
  'image_id': '0',
116
  'iscrowd': False,
117
  'segmentation': []},
118
- {'area': 5720,
119
- 'bbox': [1681.0, 182.0, 88.0, 65.0],
120
  'category_id': 2,
121
  'id': 0,
122
  'image_id': '0',
123
  'iscrowd': False,
124
  'segmentation': []},
125
- {'area': 374085,
126
- 'bbox': [0.0, 540.0, 163.0, 2295.0],
127
- 'category_id': 1,
128
  'id': 0,
129
  'image_id': '0',
130
  'iscrowd': False,
131
  'segmentation': []},
132
- {'area': 577599,
133
- 'bbox': [104.0, 537.0, 253.0, 2283.0],
134
- 'category_id': 1,
135
- 'id': 0,
136
- 'image_id': '0',
137
- 'iscrowd': False,
138
- 'segmentation': []},
139
- {'area': 598670,
140
- 'bbox': [304.0, 533.0, 262.0, 2285.0],
141
- 'category_id': 1,
142
- 'id': 0,
143
- 'image_id': '0',
144
- 'iscrowd': False,
145
- 'segmentation': []},
146
- {'area': 56,
147
- 'bbox': [284.0, 539.0, 8.0, 7.0],
148
- 'category_id': 1,
149
- 'id': 0,
150
- 'image_id': '0',
151
- 'iscrowd': False,
152
- 'segmentation': []},
153
- {'area': 1868412,
154
- 'bbox': [498.0, 513.0, 812.0, 2301.0],
155
- 'category_id': 1,
156
- 'id': 0,
157
- 'image_id': '0',
158
- 'iscrowd': False,
159
- 'segmentation': []},
160
- {'area': 307800,
161
- 'bbox': [1250.0, 512.0, 135.0, 2280.0],
162
- 'category_id': 1,
163
- 'id': 0,
164
- 'image_id': '0',
165
- 'iscrowd': False,
166
- 'segmentation': []},
167
- {'area': 494109,
168
- 'bbox': [1330.0, 503.0, 217.0, 2277.0],
169
- 'category_id': 1,
170
- 'id': 0,
171
- 'image_id': '0',
172
- 'iscrowd': False,
173
- 'segmentation': []},
174
- {'area': 52,
175
- 'bbox': [1734.0, 1013.0, 4.0, 13.0],
176
- 'category_id': 1,
177
- 'id': 0,
178
- 'image_id': '0',
179
- 'iscrowd': False,
180
- 'segmentation': []},
181
- {'area': 90666,
182
- 'bbox': [0.0, 1151.0, 54.0, 1679.0],
183
- 'category_id': 1,
184
  'id': 0,
185
  'image_id': '0',
186
  'iscrowd': False,
187
  'segmentation': []}],
188
- 'width': 2064}
189
  ```
190
 
191
  An example instance from the YOLO config:
192
 
193
  ``` python
194
- {'image': <PIL.PngImagePlugin.PngImageFile image mode=L size=2064x2944 at 0x7FAA140F2450>,
195
- 'objects': {'bbox': [[747, 390, 1493, 292],
196
- [586, 206, 562, 157],
197
- [1463, 225, 92, 57],
198
- [1725, 215, 88, 65],
199
- [80, 1688, 163, 2295],
200
- [231, 1678, 253, 2283],
201
- [435, 1675, 262, 2285],
202
- [288, 543, 8, 7],
203
- [905, 1663, 812, 2301],
204
- [1318, 1653, 135, 2280],
205
- [1439, 1642, 217, 2277],
206
- [1737, 1019, 4, 13],
207
- [26, 1991, 54, 1679]],
208
- 'label': [0, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1]}}
209
  ```
210
 
211
 
@@ -286,7 +230,7 @@ This data does not contain information relating to living individuals.
286
 
287
  ### Social Impact of Dataset
288
 
289
- There are a growing number of datasets related to page layout for historical documents. This dataset offers a different approach to annotating these datasets (focusing on object detection rather than pixel-level annotations). Improving document layout recognition can have a positive impact on downstream tasks, in particular Optical Character Recognition.
290
 
291
  ### Discussion of Biases
292
 
 
91
  An example instance from the COCO config:
92
 
93
  ```
94
+ {'height': 5610,
95
+ 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=3782x5610 at 0x7F3B785609D0>,
96
  'image_id': 0,
97
+ 'objects': [{'area': 203660,
98
+ 'bbox': [1545.0, 207.0, 1198.0, 170.0],
99
+ 'category_id': 9,
100
  'id': 0,
101
  'image_id': '0',
102
  'iscrowd': False,
103
  'segmentation': []},
104
+ {'area': 137034,
105
+ 'bbox': [912.0, 1296.0, 414.0, 331.0],
106
  'category_id': 2,
107
  'id': 0,
108
  'image_id': '0',
109
  'iscrowd': False,
110
  'segmentation': []},
111
+ {'area': 110865,
112
+ 'bbox': [2324.0, 908.0, 389.0, 285.0],
113
  'category_id': 2,
114
  'id': 0,
115
  'image_id': '0',
116
  'iscrowd': False,
117
  'segmentation': []},
118
+ {'area': 281634,
119
+ 'bbox': [2308.0, 3507.0, 438.0, 643.0],
120
  'category_id': 2,
121
  'id': 0,
122
  'image_id': '0',
123
  'iscrowd': False,
124
  'segmentation': []},
125
+ {'area': 5064268,
126
+ 'bbox': [949.0, 471.0, 1286.0, 3938.0],
127
+ 'category_id': 4,
128
  'id': 0,
129
  'image_id': '0',
130
  'iscrowd': False,
131
  'segmentation': []},
132
+ {'area': 5095104,
133
+ 'bbox': [2303.0, 539.0, 1338.0, 3808.0],
134
+ 'category_id': 4,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
  'id': 0,
136
  'image_id': '0',
137
  'iscrowd': False,
138
  'segmentation': []}],
139
+ 'width': 3782}
140
  ```
141
 
142
  An example instance from the YOLO config:
143
 
144
  ``` python
145
+ {'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=3782x5610 at 0x7F3B785EFA90>,
146
+ 'objects': {'bbox': [[2144, 292, 1198, 170],
147
+ [1120, 1462, 414, 331],
148
+ [2519, 1050, 389, 285],
149
+ [2527, 3828, 438, 643],
150
+ [1593, 2441, 1286, 3938],
151
+ [2972, 2444, 1338, 3808]],
152
+ 'label': [9, 2, 2, 2, 4, 4]}}
 
 
 
 
 
 
 
153
  ```
154
 
155
 
 
230
 
231
  ### Social Impact of Dataset
232
 
233
+ A growing number of datasets are related to page layout for historical documents. This dataset offers a different approach to annotating these datasets (focusing on object detection rather than pixel-level annotations). Improving document layout recognition can have a positive impact on downstream tasks, in particular Optical Character Recognition.
234
 
235
  ### Discussion of Biases
236