sadit commited on
Commit
4d725ab
·
verified ·
1 Parent(s): 0e8b17f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +56 -3
README.md CHANGED
@@ -1,3 +1,56 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ This repository contains the development data files used in the SISAP2025 indexing challenge.
6
+
7
+ **Task 1:** $k=30$ nearest neighbor search on out-of-distribution queries in Pubmed23 -- sentence bert embeddings `sentence-transformers/all-MiniLM-L6-v2` from <https://huggingface.co/datasets/MedRAG/pubmed>.
8
+ **Task 2:** $k=15$ nearest neighbor graph (a.k.a. self-join problem) -- sentence bert embeddings `sentence-transformers/all-MiniLM-L6-v2` from <https://huggingface.co/datasets/sentence-transformers/gooaq/>
9
+
10
+ The benchmark files are provided in h5 format and contain datasets and attributes
11
+ ```
12
+ 🗂️ HDF5.File: (read-only) benchmark-dev-pubmed23.h5
13
+ ├─ 📂 itest
14
+ │ ├─ 🏷️ algo
15
+ │ ├─ 🏷️ querytime
16
+ │ ├─ 🔢 dists
17
+ │ ├─ 🔢 knns
18
+ │ └─ 🔢 queries
19
+ ├─ 📂 otest
20
+ │ ├─ 🏷️ algo
21
+ │ ├─ 🏷️ querytime
22
+ │ ├─ 🔢 dists
23
+ │ ├─ 🔢 knns
24
+ │ └─ 🔢 queries
25
+ └─ 🔢 train
26
+
27
+ ```
28
+
29
+ Where
30
+ - `train` is the main dataset to be indexed (a $384 \times n$ matrix)
31
+ - `otest/queries` is the out-of-distribution query set (a $384 \times n$ matrix)
32
+ - `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)
33
+ - attributes of `otest`:
34
+ - `algo` the algorithm used to create the gold-standard.
35
+ - `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)
36
+ - `itest/queries` is the in-distribution query set, useful for testing and comparing with the out-of-distribution ones (a $384 \times n$ matrix)
37
+ - `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)
38
+ - attributes of `itest`:
39
+ - `algo` the algorithm used to create the gold-standard.
40
+ - `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)
41
+
42
+ `benchmark-dev-*.h5` files can be used for development and both gold-standards follow **task1**. For **task2** we provide an additional gold-standard
43
+ `allknn-benchmark-dev-gooaq.h5` that has the following structure:
44
+
45
+ ```
46
+ 🗂️ HDF5.File: (read-only) allknn-benchmark-dev-gooaq.h5
47
+ ├─ 🏷️ algo
48
+ ├─ 🏷️ querytime
49
+ ├─ 🔢 dists
50
+ └─ 🔢 knns
51
+ ```
52
+
53
+ The descriptions of these h5 datasets are similar to the previous ones, however:
54
+
55
+ - `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)
56
+ - the edges contain a self loop that will be ignored by our scoring function.