SISAP 2026 Indexing Challenge: Task description and participation details

Final leaderboard for the SISAP 2026 Indexing Challenge

Final Leaderboard Available

The SISAP 2026 challenge is now concluded. Final results are available in the leaderboard.

The SISAP Indexing Challenge 2026 is now concluded. This page documents the tasks, datasets, rules, and hardware constraints used for the 2026 edition, and the final results are available in the leaderboard.

Datasets are available at https://huggingface.co/datasets/sisap-challenges/SISAP2026/tree/main; you can clone the full repository or download each file separately.

The challenge repository remains available at https://github.com/sisap-challenges/challenge2026/.

Task 1: K-nearest neighbor graph (a.k.a. metric self-join)

In this task, participants are asked to develop memory-efficient indexing solutions that will be used to compute an approximation of the k-nearest neighbor graph for k=15. Each solution will be run in a Linux container with limited memory and storage resources.

Task 2: Maximum Inner Product Search on LLM attention workloads (Search under Distribution Shift)

In this task, participants are asked to develop memory-efficient indexing solutions to solve maximum inner product search queries in an LLM-inspired workload. Each solution will be run in a Linux container with limited memory and storage resources.

Task 3: Indexing very sparse high-dimensional vectors

Learned sparse models bridge traditional inverted indexing and neural retrieval. However, their high dimensionality and learned term distributions challenge classical IR data structures.

This task investigates how to design scalable, memory-efficient indexing methods for such representations under realistic hardware constraints. In this task, participants are asked to develop memory-efficient indexing solutions to solve information retrieval-inspired tasks on very high-dimensional, sparse embeddings using the SPLADE-v3 sparse encoder model.

Test Data, Queries, Number of Hyperparameters:

Additional datasets:

Result Submission Format

To ensure compatibility with the evaluation pipeline, results must be provided as HDF5 files following a specific structure and metadata format.

File Content: Each HDF5 file must contain two datasets:

Note: Matrices should follow row-major order (standard for C/Python/NumPy). For task 1, you may return a n×k+1n \times k + 1 matrix that includes the self-reference. This will be removed for recall computation.

Metadata (Attributes): The HDF5 file must include the following attributes at the root level:

Directory Structure: Files should be organized in the following directory structure: results/<task_name>/<unique_filename>.h5

For example: results/task1/myalgo_M16_ef100.h5.

Docker Container and Evaluation

The challenge used a reproducible evaluation framework based on Docker containers. The configuration below is preserved as reference for participants and future editions. To enforce the system requirements of the challenge, the container could be executed with the following limits:

docker run \
    -it \
    --cpus=8 \
    --memory=24g \
    --memory-swap=24g \
    --memory-swappiness 0 \
    --volume $(pwd)/data:/app/data:ro \
    --volume $(pwd)/results:/app/results:rw \
    sisap-baseline --task task3 --dataset fiqa-dev

Hardware specifications

The evaluation will be carried out using AMD EPYC 7F72 24-Core Processors.

Registration and Participation

The following process was used during the live challenge:

  1. Teams registered by opening a "Pre-registration request" issue in the GitHub repository https://github.com/sisap-challenges/challenge2026/.

  2. During the development phase, participants had access to gold standards for all tasks.

  3. Teams submitted their solutions through TIRA. Submissions were required to run in Docker containers and results had to be written in a standard format to unify the evaluation. Please see the submission details and evaluation page for the archived workflow and examples.

  4. TIRA submissions were tested at the time of the challenge. Results were shared with the authors for verification and potential fixes before the final leaderboard was published. The short paper submitted with an entry therefore focused on a self-evaluation of the proposed system.

  5. The private workloads that were used in the evaluation are shared publicly after the evaluation has been carried out.

  6. One person could only be part of a single team.

Paper Submissions

All participants should submit one short paper that details their system. If participants solve multiple tasks, the system must be described in a single paper (that might reference a technical report). Accepted papers will be part of the conference proceedings and part of a special session at SISAP 2026. Each accepted paper is required to be presented in person as an oral presentation at that session. Submissions that are not accompanied by an accepted short paper will be disqualified and removed from the final rankings. Please submit your short paper through the regular EasyChair submission system for SISAP 2026. Pick "indexing challenge" as paper category. Submissions have to follow the rules of short papers described in the call for paper (in particular, at most 8 pages in standard LNCS style), but should be provided non-anonymized. More detailed analysis can be provided through a technical report referenced in the short paper.

We thank all participants for their contributions to the SISAP Indexing Challenge 2026.

Examples

Both examples remain available as reference baselines.

Final comments

Any transformation of the dataset to load, index, and solve nearest neighbor queries is allowed. Transformations include but are not limited to packing into different data types, dimensional reduction, locality-sensitive hashing, product quantization, and transformation into binary sketches. Reproducibility and open science are primary goals of the challenge, so we accept only public GitHub repositories with working GitHub Actions as submissions. Indexing algorithms may already be published or original contributions, but a dedicated effort towards solving the respective tasks must be visible in the submission.

Important Dates (all 2026)

Organization Committee

Write an email to sisap-2026-indexing-challenge@googlegroups.com to contact any of the organizers.

CC BY-SA 4.0 sisap challenge committee. Last modified: July 08, 2026. Website built with Franklin.jl and the Julia programming language.