Datasets:
Tasks:
Object Detection
Modalities:
Image
Formats:
parquet
Languages:
English
Size:
10K - 100K
License:
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Dataset Card for Fashionpedia_4_categories
|
2 |
+
|
3 |
+
This dataset is a variation of the fashionpedia dataset available [here](https://huggingface.co/datasets/detection-datasets/fashionpedia), with only 4 categories:
|
4 |
+
- Clothing
|
5 |
+
- Shoes
|
6 |
+
- Bags
|
7 |
+
- Accessories
|
8 |
+
|
9 |
+
The goal is to make the detection task easier with 4 categories instead of 46 for the full fashionpedia dataset.
|
10 |
+
|
11 |
+
This dataset was created using the `detection_datasets` library ([GitHub](https://github.com/blinjrm/detection-datasets), [PyPI](https://pypi.org/project/detection-datasets/)), you can check here the full creation [notebook](https://blinjrm.github.io/detection-datasets/tutorials/2_Transform/).
|
12 |
+
|
13 |
+
In a nutshell, the following mapping was applied:
|
14 |
+
```Python
|
15 |
+
mapping = {
|
16 |
+
'shirt, blouse': 'clothing',
|
17 |
+
'top, t-shirt, sweatshirt': 'clothing',
|
18 |
+
'sweater': 'clothing',
|
19 |
+
'cardigan': 'clothing',
|
20 |
+
'jacket': 'clothing',
|
21 |
+
'vest': 'clothing',
|
22 |
+
'pants': 'clothing',
|
23 |
+
'shorts': 'clothing',
|
24 |
+
'skirt': 'clothing',
|
25 |
+
'coat': 'clothing',
|
26 |
+
'dress': 'clothing',
|
27 |
+
'jumpsuit': 'clothing',
|
28 |
+
'cape': 'clothing',
|
29 |
+
'glasses': 'accessories',
|
30 |
+
'hat': 'accessories',
|
31 |
+
'headband, head covering, hair accessory': 'accessories',
|
32 |
+
'tie': 'accessories',
|
33 |
+
'glove': 'accessories',
|
34 |
+
'belt': 'accessories',
|
35 |
+
'tights, stockings': 'accessories',
|
36 |
+
'sock': 'accessories',
|
37 |
+
'shoe': 'shoes',
|
38 |
+
'bag, wallet': 'bags',
|
39 |
+
'scarf': 'accessories',
|
40 |
+
}
|
41 |
+
```
|
42 |
+
|
43 |
+
As a result, annotations with no category equivalent in the mapping have been dropped.
|