jfkback commited on
Commit
5b7c617
·
verified ·
1 Parent(s): 4b191bd

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +93 -0
README.md ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ configs:
3
+ - config_name: default
4
+ data_files:
5
+ - split: train
6
+ path:
7
+ - train_0.jsonl
8
+ - train_1.jsonl
9
+ task_categories:
10
+ - question-answering
11
+ - feature-extraction
12
+ tags:
13
+ - InformationRetrieval
14
+ - MSMARCO
15
+ - IR
16
+ size_categories:
17
+ - 100K<n<1M
18
+ ---
19
+
20
+
21
+ The MSMARCO training data used to train the models from [Hypencoder: Hypernetworks for Information Retrieval
22
+ ](https://arxiv.org/abs/2502.05364).
23
+
24
+ # Dataset Overview
25
+ This dataset is based on the MSMARCO Passage dataset and includes all the queries which have a positive passage in the original dataset (there are additional queries with no positive passages which we do not use). Each query has the known positive passage as well as 200 additional passages. These additional passages may be unlabeled positives or negatives. Each associated passage has a score from [cross-encoder/ms-marco-MiniLM-L-12-v2](https://huggingface.co/cross-encoder/ms-marco-MiniLM-L-6-v2) which were used for distillation training. The passages are ordered by the teacher score.
26
+
27
+ # Dataset Construction
28
+ The 200 associated passages for each query were found by retrieving the top 800 passages using an early version of Hypencoder and then (1) selecting the top 100 passages (2) another 100 from the bottom 700 passages uniformly at random. Additionally, the known relevant passage provided by MSMARCO is added.
29
+
30
+ All query-passage pairs were then scored with [cross-encoder/ms-marco-MiniLM-L-12-v2](https://huggingface.co/cross-encoder/ms-marco-MiniLM-L-6-v2) to get teacher scores.
31
+
32
+ # Dataset Structure
33
+ ```
34
+ {
35
+ "query": {
36
+ "id": query ID which is the same as the one used in MSMARCO,
37
+ "content": query text,
38
+ "tokenized_content": token IDs for bert-base-uncased,
39
+ },
40
+ "items": [
41
+ {
42
+ "id": passage ID which is the same as the one used in MSMARCO,
43
+ "content": passage text,
44
+ "tokened_content": token IDs for bert-base-uncased,
45
+ "score": Teacher score from 'cross-encoder/ms-marco-MiniLM-L-12-v2/',
46
+ "type": Has two values [null, "given"] if the passage was the provided positive by MSMARCO the type is "given" otherwise it is null.
47
+ },
48
+ ]
49
+ }
50
+ ```
51
+
52
+ # Cite
53
+ If you use this dataset please cite our paper:
54
+ ```
55
+ @misc{killingback2025hypencoderhypernetworksinformationretrieval,
56
+ title={Hypencoder: Hypernetworks for Information Retrieval},
57
+ author={Julian Killingback and Hansi Zeng and Hamed Zamani},
58
+ year={2025},
59
+ eprint={2502.05364},
60
+ archivePrefix={arXiv},
61
+ primaryClass={cs.IR},
62
+ url={https://arxiv.org/abs/2502.05364},
63
+ }
64
+ ```
65
+ and the original MSMARCO paper:
66
+ ```
67
+ @inproceedings{MSMARCO,
68
+ author = {Tri Nguyen and
69
+ Mir Rosenberg and
70
+ Xia Song and
71
+ Jianfeng Gao and
72
+ Saurabh Tiwary and
73
+ Rangan Majumder and
74
+ Li Deng},
75
+ editor = {Tarek Richard Besold and
76
+ Antoine Bordes and
77
+ Artur S. d'Avila Garcez and
78
+ Greg Wayne},
79
+ title = {{MS} {MARCO:} {A} Human Generated MAchine Reading COmprehension Dataset},
80
+ booktitle = {Proceedings of the Workshop on Cognitive Computation: Integrating
81
+ neural and symbolic approaches 2016 co-located with the 30th Annual
82
+ Conference on Neural Information Processing Systems {(NIPS} 2016),
83
+ Barcelona, Spain, December 9, 2016},
84
+ series = {{CEUR} Workshop Proceedings},
85
+ volume = {1773},
86
+ publisher = {CEUR-WS.org},
87
+ year = {2016},
88
+ url = {https://ceur-ws.org/Vol-1773/CoCoNIPS\_2016\_paper9.pdf},
89
+ timestamp = {Thu, 11 Apr 2024 13:33:56 +0200},
90
+ biburl = {https://dblp.org/rec/conf/nips/NguyenRSGTMD16.bib},
91
+ bibsource = {dblp computer science bibliography, https://dblp.org}
92
+ }
93
+ ```