sadit commited on
Commit
e91579b
·
verified ·
1 Parent(s): a639bb1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md CHANGED
@@ -4,6 +4,42 @@ license: mit
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) on Google QA -- sentence bert embeddings `sentence-transformers/all-MiniLM-L6-v2` from <https://huggingface.co/datasets/sentence-transformers/gooaq/>
9
 
@@ -11,6 +47,7 @@ This repository contains the development data files used in the SISAP2025 indexi
11
 
12
  Additionally to PUBMED23 and Google QA we provide benchmark files for CCNEWS and Yahoo QA to help on tuning and experimentation.
13
 
 
14
  The benchmark files are provided in h5 format and contain datasets and attributes
15
  ```
16
  🗂️ HDF5.File: (read-only) benchmark-dev-pubmed23.h5
@@ -43,6 +80,7 @@ Where
43
  - `algo` the algorithm used to create the gold-standard.
44
  - `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)
45
 
 
46
  `benchmark-dev-*.h5` files can be used for development and both gold-standards follow **task1**. For **task2** we provide an additional gold-standard
47
  `allknn-benchmark-dev-gooaq.h5` that has the following structure:
48
 
 
4
 
5
  This repository contains the development data files used in the SISAP2025 indexing challenge.
6
 
7
+ ## Datasets
8
+
9
+ - Common Crawl CCNEWS:
10
+ - repo: <https://huggingface.co/datasets/sentence-transformers/ccnews/>
11
+ - Sentence BERT model: sentence-transformers/all-MiniLM-L6-v2
12
+ - similarity: Cosine / dot product
13
+ - dimension: 384
14
+ - corpus size: 614,664
15
+ - fields: _title_ and _article_, train embeddings come from _article_.
16
+
17
+ - Google Questions & Answers:
18
+ - repo: <https://huggingface.co/datasets/sentence-transformers/gooaq/>
19
+ - Sentence BERT model: sentence-transformers/all-MiniLM-L6-v2
20
+ - similarity: Cosine / dot product
21
+ - dimension: 384
22
+ - corpus size: 3,012,496
23
+ - fields: _questions_ and _answers_, train embeddings come from _answers_.
24
+
25
+ - PUBMED23 from MegRag:
26
+ - repo: <https://huggingface.co/datasets/MedRAG/pubmed>
27
+ - Sentence BERT model: sentence-transformers/all-MiniLM-L6-v2
28
+ - similarity: Cosine / dot product
29
+ - dimension: 384
30
+ - corpus size: 23,898,701
31
+ - fields: _title_ and _content_, train embeddings come from _content_.
32
+
33
+ - Yahoo answers:
34
+ - repo: <https://huggingface.co/datasets/sentence-transformers/yahoo-answers>
35
+ - Sentence BERT model: sentence-transformers/all-MiniLM-L6-v2
36
+ - similarity: Cosine / dot product
37
+ - dimension: 384
38
+ - corpus size: 681,164
39
+ - fields: _question_ and _answer_, train embeddings come from _answer_.
40
+
41
+ ## Tasks
42
+
43
  - **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>.
44
  - **Task 2:** $k=15$ nearest neighbor graph (a.k.a. self-join problem) on Google QA -- sentence bert embeddings `sentence-transformers/all-MiniLM-L6-v2` from <https://huggingface.co/datasets/sentence-transformers/gooaq/>
45
 
 
47
 
48
  Additionally to PUBMED23 and Google QA we provide benchmark files for CCNEWS and Yahoo QA to help on tuning and experimentation.
49
 
50
+ ## h5 datasets
51
  The benchmark files are provided in h5 format and contain datasets and attributes
52
  ```
53
  🗂️ HDF5.File: (read-only) benchmark-dev-pubmed23.h5
 
80
  - `algo` the algorithm used to create the gold-standard.
81
  - `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)
82
 
83
+ ### Task2 h5 files
84
  `benchmark-dev-*.h5` files can be used for development and both gold-standards follow **task1**. For **task2** we provide an additional gold-standard
85
  `allknn-benchmark-dev-gooaq.h5` that has the following structure:
86