File size: 3,829 Bytes
1f0578a 2e52ec2 da9f69a 283a65c dd9ed1f 283a65c 8b487f5 1f0578a cc258d3 118e4a5 cc258d3 171738a cc258d3 118e4a5 1f0578a cc258d3 283a65c da9f69a fa94359 da9f69a f568c95 da9f69a c106d60 58ddd60 d6e47f1 0ffac8f c106d60 8b487f5 d6e47f1 4d5dd8e d6e47f1 |
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 |
---
license: other
license_name: server-side-public-license
license_link: https://www.mongodb.com/licensing/server-side-public-license
task_categories:
- object-detection
- image-segmentation
tags:
- fashion
- e-commerce
- apparel
size_categories:
- 1K<n<10K
---
# FashionFail Dataset
The FashionFail dataset, proposed in the paper ["FashionFail: Addressing Failure Cases in Fashion Object Detection and Segmentation"](https://arxiv.org/abs/2404.08582),
(also check the [project page](https://rizavelioglu.github.io/fashionfail/))
comprises 2,495 high-resolution images (2400x2400 pixels) of products found on e-commerce websites. The dataset is divided into training, validation, and test sets, consisting of 1,344, 150, and 1,001 images, respectively.
> Note: The annotations are **automatically** generated by foundation models. However, a human annotator reviewed each sample to ensure the accuracy of the annotations.
### Download Dataset
To address concerns regarding data regulations, we share only the URLs of the images, rather than sharing the image files directly.
However, we provide a simple script to facilitate dataset construction.
The script initially retrieves annotation files from HuggingFace Datasets, then proceeds to download images using the URLs provided in those annotation files.
First, install the repository with:
```
git clone https://github.com/rizavelioglu/fashionfail.git
cd fashionfail
pip install -e .
```
Then, execute the following script:
```
python src/fashionfail/data/make_dataset.py
```
which constructs the dataset inside `"~/.cache/fashionfail/"`.
An optional argument `--save_dir` can be set to construct the dataset in the preferred directory.
### Annotation format
We follow the annotation format of the [COCO dataset](https://cocodataset.org/#format-data). The annotations are stored in the [JSON format](http://www.json.org/) and are organized as follows:
```
{
"info" : info, # dict: keys are shown below
"licenses" : [license], # List[dict]: keys are shown below
"categories" : [category], # List[dict]: keys are shown below
"images" : [image], # List[dict]: keys are shown below
"annotations" : [annotation], # List[dict]: keys are shown below
}
info{
"year" : int,
"version" : str,
"description" : str,
"contributor" : str,
"url" : str,
"date_created" : datetime,
}
license{
"id" : int,
"name" : str,
"url" : str,
}
category{
"id" : int,
"name" : str,
"supercategory" : str,
}
image{
"id" : int,
"file_name" : str,
"height" : int,
"width" : int,
"license" : int,
"original_url" : str,
}
annotation{
"id" : int,
"image_id" : int,
"category_id" : int,
"area" : int,
"iscrowd" : int, # always 0 as instances represent a single object
"bbox" : list[float], # [x,y,width,height]
"segmentation" : str, # compressed RLE: {"size", (height, widht), "counts": str}
}
```
### License
TL;DR: Not available for commercial use, unless the FULL source code is shared! \
This project is intended solely for academic research. No commercial benefits are derived from it.
All images and brands are the property of their respective owners: © adidas 2023.
Annotations are licensed under [Server Side Public License (SSPL)](https://www.mongodb.com/legal/licensing/server-side-public-license)
### Citation
```
@inproceedings{velioglu2024fashionfail,
author = {Velioglu, Riza and Chan, Robin and Hammer, Barbara},
title = {FashionFail: Addressing Failure Cases in Fashion Object Detection and Segmentation},
journal = {IJCNN},
eprint = {2404.08582},
year = {2024},
}
``` |