CoolFace
Datasetpublic

srpone/look-bench

LookBench: A Live and Holistic Fashion Image Retrieval Benchmark LookBench is a large-scale, open benchmark for fashion image retrieval, designed to evaluate modern vision and vision–language models under realistic, contamination-aware settings. The benchmark emphasizes live data, domain diversity, and holistic retrieval tasks spanning both single-item and outfit-level scenarios. This dataset accompanies the paper LookBench: A Live and Holistic Open Benchmark for Fashion Image… See the full description on the dataset page: https://huggingface.co/datasets/srpone/look-bench.

sourceHugging Faceapache-2.0updated 8mo agoView on Hugging Face
6likes333downloads
Dataset Card

LookBench: A Live and Holistic Fashion Image Retrieval Benchmark

LookBench is a large-scale, open benchmark for fashion image retrieval, designed to evaluate modern vision and vision–language models under realistic, contamination-aware settings. The benchmark emphasizes live data, domain diversity, and holistic retrieval tasks spanning both single-item and outfit-level scenarios.

This dataset accompanies the paper LookBench: A Live and Holistic Open Benchmark for Fashion Image Retrieval.

project page

code

🎯 Motivation

Existing fashion retrieval benchmarks often suffer from:

  • —Significant test–training contamination
  • —Over-reliance on clean studio product images
  • —Limited support for outfit-level and real-world queries

LookBench addresses these limitations by introducing live, recently collected images, street-style outfit queries, and AI-generated images, enabling more realistic and forward-looking evaluation.


📦 Dataset Overview

LookBench consists of multiple subsets reflecting different image sources and retrieval difficulties. Each subset is constructed as a query–corpus retrieval benchmark, where query images are matched against a large gallery.

Subsets (from Table 1 in the paper)

Subset NameImage SourceRetrieval TypeDifficulty#Queries#Corpus
RealStudioFlatReal studio flat-lay product imagesSingle-itemEasy1,01162,226
AIGen-StudioAI-generated studio imagesSingle-itemMedium19259,254
RealStreetLookReal street outfit imagesMulti-itemHard1,00061,553
AIGen-StreetLookAI-generated street outfit imagesMulti-itemHard16058,846

🧠 Tasks

LookBench supports two primary retrieval tasks:

1. Single-Item Retrieval

Given a query image containing a single fashion item, retrieve the exact matching product from the corpus.

2. Multi-Item (Outfit) Retrieval

Given a street-style image containing multiple fashion items, retrieve all corresponding products from the corpus.

These tasks reflect real-world fashion search and recommendation scenarios.


🧾 Data Format

Each dataset subset contains:

  • —Query split: images used as retrieval queries
  • —Corpus split: candidate images used as the retrieval gallery

Each sample may include the following fields (subset-dependent):

  • —image: Input fashion image
  • —category: Fashion category label
  • —bbox: Bounding box of the fashion item
  • —item_id: Unique product identifier
  • —task: Retrieval task type
  • —difficulty: Difficulty level

🚀 How to Use

Load the Dataset

You can load LookBench using the 🤗 Datasets library:

python
from datasets import load_dataset

dataset = load_dataset("srpone/look-bench")
print(dataset)

Citation

@article{gao2026lookbench,
      title={LookBench: A Live and Holistic Open Benchmark for Fashion Image Retrieval}, 
      author={Chao Gao and Siqiao Xue and Yimin Peng and Jiwen Fu and Tingyi Gu and Shanshan Li and Fan Zhou},
      year={2026},
      url={https://arxiv.org/abs/2601.14706}, 
      journal= {arXiv preprint arXiv:2601.14706},
}