File size: 2,700 Bytes
cb242a0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
---
license: mit
dataset_info:
  features:
  - name: image_id
    dtype: int32
  - name: image
    dtype: image
  - name: width
    dtype: int64
  - name: height
    dtype: int64
  - name: objects
    sequence:
    - name: bbox_id
      dtype: int64
    - name: category
      dtype:
        class_label:
          names:
            '0': pants
            '1': pocket
            '2': sleeve
            '3': outerwear
            '4': hat
            '5': belt
            '6': shoe
            '7': neckline
            '8': hood
            '9': top, t-shirt, sweatshirt
            '10': applique
            '11': dress
            '12': epaulette
            '13': glove
            '14': scarf, tie
            '15': accessories
            '16': watch
            '17': glasses
    - name: bbox
      sequence: float64
      length: 4
    - name: area
      dtype: int64
  splits:
  - name: train
    num_bytes: 3421508886.125
    num_examples: 45623
  - name: val
    num_bytes: 85265340.25
    num_examples: 1158
  download_size: 3481427072
  dataset_size: 3506774226.375
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: val
    path: data/val-*
---

# Remapped version of the Fashionpedia dataset

<!-- Provide a quick summary of the dataset. -->

Remapped version of the [fashionpedia dataset](https://huggingface.co/datasets/detection-datasets/fashionpedia).

## Dataset Description
The dataset has been remapped using the following dictionary: 
```
transition_dict = {'shirt, blouse': 'top, t-shirt, sweatshirt',
 'top, t-shirt, sweatshirt': 'top, t-shirt, sweatshirt',
 'sweater': 'outerwear',
 'cardigan': 'outerwear',
 'jacket': 'outerwear',
 'vest': 'outerwear',
 'pants': 'pants',
 'shorts': 'pants',
 'skirt': 'dress',
 'coat': 'outerwear',
 'dress': 'dress',
 'jumpsuit': 'dress',
 'cape': 'outerwear',
 'glasses': 'glasses',
 'hat': 'hat',
 'headband, head covering, hair accessory': 'hat',
 'tie': 'scarf, tie',
 'glove': 'glove',
 'watch': 'watch',
 'belt': 'belt',
 'leg warmer': 'pants',
 'tights, stockings': 'pants',
 'sock': 'shoe',
 'shoe': 'shoe',
 'bag, wallet': 'accessories',
 'scarf': 'scarf, tie',
 'umbrella': 'accessories',
 'hood': 'hood',
 'collar': 'neckline',
 'lapel': 'neckline',
 'epaulette': 'epaulette',
 'sleeve': 'sleeve',
 'pocket': 'pocket',
 'neckline': 'neckline',
 'buckle': 'accessories',
 'zipper': 'accessories',
 'applique': 'applique',
 'bead': 'accessories',
 'bow': 'accessories',
 'flower': 'accessories',
 'fringe': 'accessories',
 'ribbon': 'accessories',
 'rivet': 'accessories',
 'ruffle': 'sleeve',
 'sequin': 'accessories',
 'tassel': 'accessories',
 'appalique': 'accessories'}
```