Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

This repository contains the development data files used in the SISAP2025 indexing challenge.

Datasets

Tasks

ALL of these files correspond to development files. The evaluation process will use other querysets and subsets.

Additionally to PUBMED23 and Google QA we provide benchmark files for CCNEWS and Yahoo QA to help on tuning and experimentation.

h5 datasets

The benchmark files are provided in h5 format and contain datasets and attributes

πŸ—‚οΈ  HDF5.File: (read-only) benchmark-dev-pubmed23.h5
β”œβ”€ πŸ“‚ itest
β”‚  β”œβ”€ 🏷️  algo
β”‚  β”œβ”€ 🏷️  querytime
β”‚  β”œβ”€ πŸ”’ dists
β”‚  β”œβ”€ πŸ”’ knns
β”‚  └─ πŸ”’ queries
β”œβ”€ πŸ“‚ otest
β”‚  β”œβ”€ 🏷️  algo
β”‚  β”œβ”€ 🏷️  querytime
β”‚  β”œβ”€ πŸ”’ dists
β”‚  β”œβ”€ πŸ”’ knns
β”‚  └─ πŸ”’ queries
└─ πŸ”’ train

Where

  • train is the main dataset to be indexed (a $384 \times n$ matrix)
  • otest/queries is the out-of-distribution query set (a $384 \times n$ matrix)
  • otest/knns (identifiers starting at 1) and otest/dists (distances) are the pre-computed gold standard for the out-of-distribution queries ($384 \times 11000$ matrices)
  • attributes of otest:
    • algo the algorithm used to create the gold-standard.
    • querytime the time in seconds used to compute the gold standard (using an Intel(R) Xeon(R) Silver 4216 CPU @ 2.10GHz with 60 threads)
  • itest/queries is the in-distribution query set, useful for testing and comparing with the out-of-distribution ones (a $384 \times n$ matrix)
  • itest/knns (identifiers starting at 1) and itest/dists (distances) are the pre-computed gold standard for the in-distribution queries ($384 \times 11000$ matrices)
  • attributes of itest:
    • algo the algorithm used to create the gold-standard.
    • querytime the time in seconds used to compute the gold standard (using an Intel(R) Xeon(R) Silver 4216 CPU @ 2.10GHz with 60 threads)

Task2 h5 files

benchmark-dev-*.h5 files can be used for development and both gold-standards follow task1. For task2 we provide an additional gold-standard allknn-benchmark-dev-gooaq.h5 that has the following structure:

πŸ—‚οΈ  HDF5.File: (read-only) allknn-benchmark-dev-gooaq.h5
β”œβ”€ 🏷️  algo
β”œβ”€ 🏷️  querytime
β”œβ”€ πŸ”’ dists 
└─ πŸ”’ knns

The descriptions of these h5 datasets are similar to the previous ones, however:

  • knns (identifiers) and dists (distances) corresponding to the outgoing vertices of the $k$ nearest neighbor graph, i.e., the adjacency list of the graph. (a 16 \times n matrix)
  • the edges contain a self loop that will be ignored by our scoring function.
Downloads last month
54