Datasets:
Commit
·
2c99d2b
1
Parent(s):
4c0b0a0
add fields info
Browse files
README.md
CHANGED
@@ -144,7 +144,28 @@ An example from the `image-matching` split:
|
|
144 |
|
145 |
### Data Fields
|
146 |
|
147 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
|
149 |
### Data Splits
|
150 |
|
@@ -232,10 +253,9 @@ keywords = {illustration detection, chapbooks, image search, visual grouping, pr
|
|
232 |
location = {Lausanne, Switzerland},
|
233 |
series = {HIP '21}
|
234 |
}
|
235 |
-
|
236 |
```
|
237 |
|
238 |
|
239 |
### Contributions
|
240 |
|
241 |
-
Thanks to [@
|
|
|
144 |
|
145 |
### Data Fields
|
146 |
|
147 |
+
The fields for the `illustration-detection` config:
|
148 |
+
|
149 |
+
- image_id: id for the image
|
150 |
+
- height: height of the image
|
151 |
+
- width: width of the image
|
152 |
+
- image: image of the chapbook page
|
153 |
+
- objects: annotations in COCO format, consisting of a list containing dictionaries with the following keys:
|
154 |
+
- bbox: bounding boxes for the images
|
155 |
+
- category_id: a label for the image
|
156 |
+
- image_id: id for the image
|
157 |
+
- iscrowd: COCO is a crowd flag
|
158 |
+
- segmentation: COCO segmentation annotations (empty in this case but kept for compatibility with other processing scripts)
|
159 |
+
|
160 |
+
The fields for the `image-classification` config:
|
161 |
+
|
162 |
+
- image: image
|
163 |
+
- label: a label indicating if the page contains an illustration or not
|
164 |
+
|
165 |
+
The fields for the `image-matching` config:
|
166 |
+
|
167 |
+
- image: image of the chapbook page
|
168 |
+
- label: an id for a particular instance of an image i.e. the same images will share the same id.
|
169 |
|
170 |
### Data Splits
|
171 |
|
|
|
253 |
location = {Lausanne, Switzerland},
|
254 |
series = {HIP '21}
|
255 |
}
|
|
|
256 |
```
|
257 |
|
258 |
|
259 |
### Contributions
|
260 |
|
261 |
+
Thanks to [@davanstrien](https://github.com/davanstrien) and Giles Bergel for adding this dataset.
|