Loading
Round 1: Completed
22.9k
636
67
1581

 

šŸŽÆ Select your final submissions here

 

šŸ“„ Guidelines For Using External Dataset

šŸš€ Make your first submission using the starter-kit

šŸ‘„ Competitions are more fun with friends. Find your teammates!

šŸ¢ The challenge is organized in conjunction with Machines Can See Summit (MCS)

šŸ•µļø Introduction

Enabling quick and precise search among millions of items on marketplaces is a key feature for e-commerce. The use of common text-based search engines often requires several iterations and can render unsuccessful unless exact product names are known. Image-based search provides a powerful alternative and can be particularly handy when a customer observes the desired product in real life, in movies or online media.

Recent progress in computer vision now provides rich and precise descriptors for visual content. The goal of this challenge is to benchmark and advance existing computer vision methods for the task of image-based product search. Our evaluation targets a real-case scenario where we use over 40k images for 9k products from real marketplaces. Example products include sandals and sunglasses, and their successful matching requires overcoming visual variations in images due changing viewpoints, background clutter, varying image quality and resolution.

examples_img.png

The challenge is organized in conjunction with Machines Can See Summit (MCS) that will be held in Dubai in the beginning of April 2023. The winners of the challenge will be invited to present their solutions at MCS 2023. It is an international platform aiming to exchange and advance knowledge through interaction among AI communities. MCS Summit brings together the brightest minds to share the latest ideas and trends in Computer Vision and Artificial Intelligence.

We hope this challenge will help advancing novel algorithms for image retrieval and practical applications of computer vision to e-commerce.

šŸ”Ž Problem Statement

In this challenge we separate product images into user and seller photos. User photos are typically snapshots of products taken with a phone camera in cluttered scenes. Such images differ substantially from seller photos that are intended to represent products on marketplaces. We provide object bounding boxes to indicate desired products on user photos and use such images and boxes as search queries. Given a search query, the goal of the algorithm is to find correct product matches in the gallery of seller photos.

šŸ“ Datasets

Test set

To simplify debugging and to enable local validation, we provide a development test set with images and ground truth labels. The local development test set and the public leaderboard test set share the same format as described below.

Testset format

Test set contains 2 files: gallery.csv and queries.csv.

gallery.csv defines the database of images from marketplaces. Each row contains the following information:

  • seller_img_id - unique int32 identifier of product image that is used in result ranking NumPy array;
  • img_path - path to the product image in the "data" folder.

queries.csv defines a set of user images that will be used as queries to search the database. Each row contains the following information:

  • user_img_id - unique int32 identifier of user image that is used in result ranking NumPy array;
  • img_path - path to user image in "data" folder;
  • bbox_x, bbox_y, bbox_w, bbox_h - bounding box coordinates of the product in the user image.

Training set

We do not provide a training dataset for this competition. Participants are invited to use publicly available data under common-use license or other public research datasets such as Products10K.

If you collect your own dataset and use it for training, we will request you to make this dataset available to other participants in this competition thread by April 9.

šŸš€ Submission

Your submission should return a numpy array of size N x 1000, where each row r corresponds to the top-1000 list of gallery images sorted by the similarity with respect to the query image r, r = 1ā€¦N.

Make your first submission using the starter kitšŸš€!

šŸ–Š Evaluation Metric

Submissions will be evaluated by the mean Average Precision (mAP) score for the retrieval task, where AP is defined as

(AP@n = {1 \over GTP}\sum_k^n{P@k \times rel@k})

where GTP refers to the total number of ground truth positives, n refers to the total number of products you are interested in, P@k refers to the precision@k and rel@k is a relevance function. The relevance function is an indicator function which equals 1 if the product at rank k is relevant and equals to 0 otherwise. K = 1000 in our case.

Example below illustrates AP calculation for a given query, Q, with GTP=3

img_1.png

The overall AP for this query is 0.7. One thing to note is that since we know that there are only three GTP, the AP@5 would equal to overall AP.
For another query, Q, we could get a perfect AP of 1 if the returned Gā€™ is sorted as such: img_2.png

Source: Breaking Down Mean Average Precision (mAP)

šŸ“… Timeline

Here's the timeline of the challenge:

  • Challenge start: January 16, 2023
  • Deadline for publication of training datasets by participants: April 9, 2023
  • Challenge end: April 16, 2023
  • Presentation of winning solutions at MCS: Beginning of May, 2023

šŸ’° Prizes

This challenge has Leaderboard Prize Pool of USD 15,000.

Leaderboard Prizes
The leaderboard's top three teams or participants will receive the following prizes.

  • šŸ„‡ 1st on the leaderboard: USD 8000
  • šŸ„ˆ 2nd on the leaderboard: USD 5000
  • šŸ„‰ 3rd on the leaderboard: USD 2000

The winners of the challenge will be invited to present their solutions at the Machines Can See summit in Dubai and will be awarded a travel grant. It is an international platform aiming to exchange and advance knowledge through interaction among AI communities. MCS Summit brings together the brightest minds to share the latest ideas and trends in Computer Vision and Artificial Intelligence.

šŸ“± F.A.Q

  • Q: How many product bounding boxes should I expect for one query image? For example, if more than one product is depicted in the image.

  • A: Each query image has exactly one bounding box corresponding to the query object.

  • Q: Should the same products which differ only by color be considered as same or different? For example, the same bags with different leather colors.

  • A: Yes, two images of products should be considered as a correct match if these products only differ by color.

  • Q: Can participants use re-ranking techniques in their solutions?

  • A: Yes, re-ranking can be used provided your submission respects runtime constraints defined by the challenge.

For any more queries, please post on the Discourse Forum or send an email to: help@aicrowd.com.

Participants

Getting Started

Notebooks

See all
adad
By
yang_yang
10 months ago
0