CoolFace
Datasetpublic

owj0421/polyvore-outfits

Polyvore Outfits (Refactored Version) This repository provides a refactored version of the Polyvore Outfits dataset, originally introduced in the paper "Learning Type-Aware Embeddings for Fashion Compatibility" by Mariya I. Vasileva et al. πŸ“Œ Overview The goal of this refactoring is to improve usability and developer experience. While the core data remains identical to the original, the file structure and JSON schemas have been standardized to make it easier to… See the full description on the dataset page: https://huggingface.co/datasets/owj0421/polyvore-outfits.

sourceHugging Faceotherupdated 9mo agoView on Hugging Face
4likes335downloads
Dataset Card

Polyvore Outfits (Refactored Version)

This repository provides a refactored version of the Polyvore Outfits dataset, originally introduced in the paper "Learning Type-Aware Embeddings for Fashion Compatibility" by Mariya I. Vasileva et al.

πŸ“Œ Overview

The goal of this refactoring is to improve usability and developer experience. While the core data remains identical to the original, the file structure and JSON schemas have been standardized to make it easier to load and use in modern deep learning pipelines.

πŸ“Š Data Formats

1. Compatibility

Binary classification data to determine if a set of items matches.

  • β€”label: 1: Compatible
  • β€”label: 0: Incompatible
json
{
  "items": ["217320763_1", "217320763_2"],
  "label": 1
}

2. Fill-in-the-Blank (FITB)

Multiple-choice data to predict the most suitable item for a missing slot.

json
{
  "items": ["217320763_1", "217320763_2"],
  "blank_index": 2,
  "candidates": ["217320763_3", "xxxx_x"],
  "label": 0
}

πŸ“œ Citation & Original Work

This is a refactored version of the work by Vasileva et al. If you use this dataset, please cite the original paper:

bibtex
@misc{vasileva2018learningtypeawareembeddingsfashion,
      title={Learning Type-Aware Embeddings for Fashion Compatibility},
      author={Mariya I. Vasileva and Bryan A. Plummer and Krishna Dusad and Shreya Rajpal and Ranjitha Kumar and David Forsyth},
      year={2018},
      eprint={1803.09196},
      archivePrefix={arXiv},
      primaryClass={cs.CV},
      url={[https://arxiv.org/abs/1803.09196](https://arxiv.org/abs/1803.09196)},
}

βš–οΈ License

This refactored version follows the same licensing terms as the original Polyvore Outfits dataset. Please refer to the original source for specific usage restrictions.