pierrexsq commited on
Commit
cffc7a3
·
verified ·
1 Parent(s): 4c5447a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +71 -3
README.md CHANGED
@@ -63,11 +63,77 @@ dataset_info:
63
  dtype: string
64
  ---
65
 
66
- ## How to Use
67
 
68
- LookBench is designed for evaluating **fashion image retrieval** models under realistic and contamination-aware settings. Each subset consists of a **query set** and a large **corpus (gallery)** used for retrieval evaluation.
69
 
70
- ### 1. Load the Dataset
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
 
72
  You can load LookBench using the 🤗 Datasets library:
73
 
@@ -76,5 +142,7 @@ from datasets import load_dataset
76
 
77
  dataset = load_dataset("srpone/look-bench")
78
  print(dataset)
 
 
79
 
80
 
 
63
  dtype: string
64
  ---
65
 
66
+ # LookBench: A Live and Holistic Fashion Image Retrieval Benchmark
67
 
68
+ **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.
69
 
70
+ This dataset accompanies the paper **LookBench: A Live and Holistic Open Benchmark for Fashion Image Retrieval**.
71
+
72
+ ---
73
+
74
+
75
+ ## 🎯 Motivation
76
+
77
+ Existing fashion retrieval benchmarks often suffer from:
78
+ - Significant test–training contamination
79
+ - Over-reliance on clean studio product images
80
+ - Limited support for outfit-level and real-world queries
81
+
82
+ 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.
83
+
84
+ ---
85
+
86
+ ## 📦 Dataset Overview
87
+
88
+ LookBench consists of multiple subsets reflecting different image sources and retrieval difficulties.
89
+ Each subset is constructed as a **query–corpus retrieval benchmark**, where query images are matched against a large gallery.
90
+
91
+ ### Subsets (from Table 1 in the paper)
92
+
93
+ | Subset Name | Image Source | Retrieval Type | Difficulty | #Queries | #Corpus |
94
+ |-----------------------|------------------------------------|---------------:|-----------:|---------:|--------:|
95
+ | RealStudioFlat | Real studio flat-lay product images | Single-item | Easy | 1,011 | 62,226 |
96
+ | AIGen-Studio | AI-generated studio images | Single-item | Medium | 192 | 59,254 |
97
+ | RealStreetLook | Real street outfit images | Multi-item | Hard | 1,000 | 61,553 |
98
+ | AIGen-StreetLook | AI-generated street outfit images | Multi-item | Hard | 160 | 58,846 |
99
+
100
+ ---
101
+
102
+ ## 🧠 Tasks
103
+
104
+ LookBench supports two primary retrieval tasks:
105
+
106
+ ### 1. Single-Item Retrieval
107
+ Given a query image containing a single fashion item, retrieve the exact matching product from the corpus.
108
+
109
+ ### 2. Multi-Item (Outfit) Retrieval
110
+ Given a street-style image containing multiple fashion items, retrieve **all corresponding products** from the corpus.
111
+
112
+ These tasks reflect real-world fashion search and recommendation scenarios.
113
+
114
+ ---
115
+
116
+ ## 🧾 Data Format
117
+
118
+ Each dataset subset contains:
119
+
120
+ - **Query split**: images used as retrieval queries
121
+ - **Corpus split**: candidate images used as the retrieval gallery
122
+
123
+ Each sample may include the following fields (subset-dependent):
124
+
125
+ - `image`: Input fashion image
126
+ - `category`: Fashion category label
127
+ - `bbox`: Bounding box of the fashion item
128
+ - `item_id`: Unique product identifier
129
+ - `task`: Retrieval task type
130
+ - `difficulty`: Difficulty level
131
+
132
+ ---
133
+
134
+ ## 🚀 How to Use
135
+
136
+ ### Load the Dataset
137
 
138
  You can load LookBench using the 🤗 Datasets library:
139
 
 
142
 
143
  dataset = load_dataset("srpone/look-bench")
144
  print(dataset)
145
+ ```
146
+
147
 
148