Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,11 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
dataset_info:
|
3 |
features:
|
4 |
- name: id
|
@@ -17,3 +24,18 @@ configs:
|
|
17 |
- split: train
|
18 |
path: data/train-*
|
19 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
multilinguality:
|
5 |
+
- monolingual
|
6 |
+
size_categories:
|
7 |
+
- 1M<n<10M
|
8 |
+
pretty_name: MS MARCO corpus
|
9 |
dataset_info:
|
10 |
features:
|
11 |
- name: id
|
|
|
24 |
- split: train
|
25 |
path: data/train-*
|
26 |
---
|
27 |
+
|
28 |
+
# MS MARCO Corpus
|
29 |
+
|
30 |
+
This dataset allows for a convenient mapping from MS MARCO query/passage ID to the query/passage text. This corpus was downloaded from https://msmarco.z22.web.core.windows.net/msmarcoranking/collection.tar.gz.
|
31 |
+
|
32 |
+
## Usage
|
33 |
+
|
34 |
+
This dataset was designed to allow you to perform the following:
|
35 |
+
```python
|
36 |
+
from datasets import load_dataset
|
37 |
+
|
38 |
+
dataset = load_dataset("sentence-transformers/msmarco-corpus")
|
39 |
+
id_to_text = dict(zip(dataset["id"], dataset["text"]))
|
40 |
+
print(id_to_text[571018])
|
41 |
+
```
|