readme
Browse files
README.md
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# MS MARCO Passages Hard Negatives
|
2 |
+
|
3 |
+
[MS MARCO](https://microsoft.github.io/msmarco/) is a large scale information retrieval corpus that was created based on real user search queries using Bing search engine.
|
4 |
+
|
5 |
+
This dataset repository contains files that are helpful to train bi-encoder models e.g. using [sentence-transformers](https://www.sbert.net).
|
6 |
+
|
7 |
+
## msmarco-hard-negatives.jsonl.gz
|
8 |
+
This is a jsonl file: Each line is a JSON object. It has the following format:
|
9 |
+
```
|
10 |
+
{"qid": 867436, "pos": [5238393], "neg": {"bm25": [...], ...}}
|
11 |
+
```
|
12 |
+
|
13 |
+
`qid` is the query-ID from MS MARCO, `pos` is a list with paragraph IDs for positive passages. `neg` is a dictionary where we mined hard negatives using different (mainly dense retrieval) systems.
|
14 |
+
|
15 |
+
## cross-encoder-ms-marco-MiniLM-L-6-v2-scores.pkl.gz
|
16 |
+
|
17 |
+
This is a pickled dictionary in the format: `scores[qid][pid] -> cross_encoder_score`
|
18 |
+
|
19 |
+
It contains the cross-encoder scores for (query, paragraph) pairs using the [cross-encoder/ms-marco-MiniLM-L-6-v2](https://huggingface.co/cross-encoder/ms-marco-MiniLM-L-6-v2) model.
|