Datasets:

Modalities:
Image
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
Dask
License:
parquet-converter commited on
Commit
2508afe
·
1 Parent(s): 8084543

Update parquet files

Browse files
README.md DELETED
@@ -1,149 +0,0 @@
1
- ---
2
- pretty_name: Fashionpedia
3
- task_categories:
4
- - object-detection
5
- language:
6
- - en
7
- license:
8
- - cc-by-4.0
9
- multilinguality:
10
- - monolingual
11
- size_categories:
12
- - 10K<n<100K
13
- source_datasets:
14
- - original
15
- tags:
16
- - object-detection
17
- - fashion
18
- - computer-vision
19
- paperswithcode_id: fashionpedia
20
- ---
21
-
22
- # Dataset Card for Fashionpedia
23
-
24
- ## Table of Contents
25
- - [Dataset Description](#dataset-description)
26
- - [Dataset Summary](#dataset-summary)
27
- - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
28
- - [Languages](#languages)
29
- - [Dataset Structure](#dataset-structure)
30
- - [Data Instances](#data-instances)
31
- - [Data Fields](#data-fields)
32
- - [Data Splits](#data-splits)
33
- - [Additional Information](#additional-information)
34
- - [Licensing Information](#licensing-information)
35
- - [Citation Information](#citation-information)
36
- - [Contributions](#contributions)
37
-
38
- ## Dataset Description
39
-
40
- - **Homepage:** https://fashionpedia.github.io/home/index.html
41
- - **Repository:** https://github.com/cvdfoundation/fashionpedia
42
- - **Paper:** https://arxiv.org/abs/2004.12276
43
-
44
- ### Dataset Summary
45
-
46
- Fashionpedia is a dataset mapping out the visual aspects of the fashion world.
47
- From the paper:
48
- > Fashionpedia is a new dataset which consists of two parts: (1) an ontology built by fashion experts containing 27 main apparel categories, 19 apparel parts, 294 fine-grained attributes and their relationships; (2) a dataset with everyday and celebrity event fashion images annotated with segmentation masks and their associated per-mask fine-grained attributes, built upon the Fashionpedia ontology.
49
- Fashionpedia has:
50
- - 46781 images
51
- - 342182 bounding-boxes
52
-
53
- ### Supported Tasks
54
-
55
- - Object detection
56
- - Image classification
57
-
58
- ### Languages
59
-
60
- All of annotations use English as primary language.
61
-
62
- ## Dataset Structure
63
-
64
- The dataset is structured as follows:
65
- ```py
66
- DatasetDict({
67
- train: Dataset({
68
- features: ['image_id', 'image', 'width', 'height', 'objects'],
69
- num_rows: 45623
70
- })
71
- val: Dataset({
72
- features: ['image_id', 'image', 'width', 'height', 'objects'],
73
- num_rows: 1158
74
- })
75
- })
76
- ```
77
-
78
- ### Data Instances
79
-
80
- An example of the data for one image is:
81
- ```py
82
- {'image_id': 23,
83
- 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=682x1024>,
84
- 'width': 682,
85
- 'height': 1024,
86
- 'objects': {'bbox_id': [150311, 150312, 150313, 150314],
87
- 'category': [23, 23, 33, 10],
88
- 'bbox': [[445.0, 910.0, 505.0, 983.0],
89
- [239.0, 940.0, 284.0, 994.0],
90
- [298.0, 282.0, 386.0, 352.0],
91
- [210.0, 282.0, 448.0, 665.0]],
92
- 'area': [1422, 843, 373, 56375]}}
93
- ```
94
-
95
- With the type of each field being defined as:
96
- ```py
97
- {'image_id': Value(dtype='int64'),
98
- 'image': Image(decode=True),
99
- 'width': Value(dtype='int64'),
100
- 'height': Value(dtype='int64'),
101
- 'objects': Sequence(feature={
102
- 'bbox_id': Value(dtype='int64'),
103
- 'category': ClassLabel(num_classes=46, names=['shirt, blouse', 'top, t-shirt, sweatshirt', 'sweater', 'cardigan', 'jacket', 'vest', 'pants', 'shorts', 'skirt', 'coat', 'dress', 'jumpsuit', 'cape', 'glasses', 'hat', 'headband, head covering, hair accessory', 'tie', 'glove', 'watch', 'belt', 'leg warmer', 'tights, stockings', 'sock', 'shoe', 'bag, wallet', 'scarf', 'umbrella', 'hood', 'collar', 'lapel', 'epaulette', 'sleeve', 'pocket', 'neckline', 'buckle', 'zipper', 'applique', 'bead', 'bow', 'flower', 'fringe', 'ribbon', 'rivet', 'ruffle', 'sequin', 'tassel']),
104
- 'bbox': Sequence(feature=Value(dtype='float64'), length=4),
105
- 'area': Value(dtype='int64')},
106
- length=-1)}
107
- ```
108
-
109
- ### Data Fields
110
-
111
- The dataset has the following fields:
112
-
113
- - `image_id`: Unique numeric ID of the image.
114
- - `image`: A `PIL.Image.Image` object containing the image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]`
115
- - `width`: Image width.
116
- - `height`: Image height.
117
- - `objects`: A dictionary containing bounding box metadata for the objects in the image:
118
- - `bbox_id`: Unique numeric ID of the bounding box annotation.
119
- - `category`: The object’s category.
120
- - `area`: The area of the bounding box.
121
- - `bbox`: The object’s bounding box (in the Pascal VOC format)
122
-
123
- ### Data Splits
124
-
125
- | | Train | Validation | Test |
126
- |----------------|--------|------------|------|
127
- | Images | 45623 | 1158 | 0 |
128
- | Bounding boxes | 333401 | 8781 | 0 |
129
-
130
- ## Additional Information
131
-
132
- ### Licensing Information
133
-
134
- Fashionpedia is licensed under a Creative Commons Attribution 4.0 International License.
135
-
136
- ### Citation Information
137
-
138
- ```
139
- @inproceedings{jia2020fashionpedia,
140
- title={Fashionpedia: Ontology, Segmentation, and an Attribute Localization Dataset},
141
- author={Jia, Menglin and Shi, Mengyun and Sirotenko, Mikhail and Cui, Yin and Cardie, Claire and Hariharan, Bharath and Adam, Hartwig and Belongie, Serge}
142
- booktitle={European Conference on Computer Vision (ECCV)},
143
- year={2020}
144
- }
145
- ```
146
-
147
- ### Contributions
148
-
149
- Thanks to [@blinjrm](https://github.com/blinjrm) for adding this dataset.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/train-00004-of-00007-f4e6f12cd2cedfea.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d54fa61a5a95876a0e634df37b3381972bf2227dca14f8e4cc24abbf02ed3b0b
3
- size 487726084
 
 
 
 
data/train-00005-of-00007-41d8dfe1edb6591e.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:0efa0f3fc5ecf3deb217776b1518118e1c499629c4a15770e9a51a6355a6d00a
3
- size 487389925
 
 
 
 
data/train-00006-of-00007-f41b0f2f4bbefac9.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ce32e71d5045d17f82148c9be1ff98801ac7174aef0d55bc729939a9decd1989
3
- size 486997231
 
 
 
 
dataset_infos.json DELETED
@@ -1 +0,0 @@
1
- {"detection-datasets--fashionpedia": {"description": "", "citation": "", "homepage": "", "license": "", "features": {"image_id": {"dtype": "int64", "id": null, "_type": "Value"}, "image": {"decode": true, "id": null, "_type": "Image"}, "width": {"dtype": "int64", "id": null, "_type": "Value"}, "height": {"dtype": "int64", "id": null, "_type": "Value"}, "objects": {"feature": {"bbox_id": {"dtype": "int64", "id": null, "_type": "Value"}, "category": {"num_classes": 46, "names": ["shirt, blouse", "top, t-shirt, sweatshirt", "sweater", "cardigan", "jacket", "vest", "pants", "shorts", "skirt", "coat", "dress", "jumpsuit", "cape", "glasses", "hat", "headband, head covering, hair accessory", "tie", "glove", "watch", "belt", "leg warmer", "tights, stockings", "sock", "shoe", "bag, wallet", "scarf", "umbrella", "hood", "collar", "lapel", "epaulette", "sleeve", "pocket", "neckline", "buckle", "zipper", "applique", "bead", "bow", "flower", "fringe", "ribbon", "rivet", "ruffle", "sequin", "tassel"], "id": null, "_type": "ClassLabel"}, "bbox": {"feature": {"dtype": "float64", "id": null, "_type": "Value"}, "length": 4, "id": null, "_type": "Sequence"}, "area": {"dtype": "int64", "id": null, "_type": "Value"}}, "length": -1, "id": null, "_type": "Sequence"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": null, "config_name": null, "version": null, "splits": {"train": {"name": "train", "num_bytes": 3270052885.275, "num_examples": 45623, "dataset_name": "fashionpedia"}, "val": {"name": "val", "num_bytes": 85188903.264, "num_examples": 1158, "dataset_name": "fashionpedia"}}, "download_checksums": null, "download_size": 3478843264, "post_processing_size": null, "dataset_size": 3355241788.539, "size_in_bytes": 6834085052.539}}
 
 
data/train-00003-of-00007-9a99ff8dc572e02c.parquet → detection-datasets--fashionpedia/parquet-train-00000-of-00004.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:efcf114285c0122343069a79251b3ae69e2a1100bac3c7dce063074ead282042
3
- size 489888780
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2789ced6fe41ea1f0dd4cebe1958b40444d2280aba669ed3f6486064a37ad819
3
+ size 961943398
data/train-00000-of-00007-fe108070118553c3.parquet → detection-datasets--fashionpedia/parquet-train-00001-of-00004.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a575e7d8303d52197cd7d8a5e327321a602d3eeafe39e47a0e5d2c03041549c2
3
- size 481667449
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e978229f873cbb2dfbfd08dd2c27750b9ada8201da0514539bf898e7761821e9
3
+ size 970159202
data/train-00001-of-00007-f41a5a9c38c9005b.parquet → detection-datasets--fashionpedia/parquet-train-00002-of-00004.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:16207bd39a7e4ee3d472a255a73c688a7219f43d16e2e589606543a1b1354b3f
3
- size 480159159
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9258ccde0fd9abd8a90d07fa6969b5eb67328d6408295011d47035042a7f145f
3
+ size 975272843
data/train-00002-of-00007-40bc8456894bcbcd.parquet → detection-datasets--fashionpedia/parquet-train-00003-of-00004.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:18e37384ce00be54a535bf31bcee5cae4ccf100016b61c236bae35ae8b971537
3
- size 480166798
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:206b4481f4889f1607d2d9a7ee314fe9aea6e1c1699e6cd8acd53485ce330e89
3
+ size 487023369
data/val-00000-of-00001-0b29e85429788213.parquet → detection-datasets--fashionpedia/parquet-val.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:64fb378e09409c2859b3f3c2a521572b0d6f8118fc9274c03f3f8c34f3bf9132
3
- size 84847838
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4850f466fe4de6e90fbdb360fca107a7a46a88576a98b7344ed0ae8d57540973
3
+ size 84857311