Xueguang Ma commited on
Commit
eed87d2
1 Parent(s): 1888972

add corpus

Browse files
Files changed (3) hide show
  1. .gitattributes +1 -0
  2. corpus.jsonl.gz +3 -0
  3. msmarco-passage-corpus.py +87 -0
.gitattributes CHANGED
@@ -25,3 +25,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
25
  *.zip filter=lfs diff=lfs merge=lfs -text
26
  *.zstandard filter=lfs diff=lfs merge=lfs -text
27
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
25
  *.zip filter=lfs diff=lfs merge=lfs -text
26
  *.zstandard filter=lfs diff=lfs merge=lfs -text
27
  *tfevents* filter=lfs diff=lfs merge=lfs -text
28
+ corpus.jsonl.gz filter=lfs diff=lfs merge=lfs -text
corpus.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f77a325e383a211fdbcc4f022b036bb53ebcadf3f3dc57375472be9dd6ba2a07
3
+ size 1054378405
msmarco-passage-corpus.py ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.Wikipedia
15
+
16
+ # Lint as: python3
17
+ """MsMarco Passage dataset."""
18
+
19
+ import json
20
+
21
+ import datasets
22
+
23
+ _CITATION = """
24
+ @misc{bajaj2018ms,
25
+ title={MS MARCO: A Human Generated MAchine Reading COmprehension Dataset},
26
+ author={Payal Bajaj and Daniel Campos and Nick Craswell and Li Deng and Jianfeng Gao and Xiaodong Liu
27
+ and Rangan Majumder and Andrew McNamara and Bhaskar Mitra and Tri Nguyen and Mir Rosenberg and Xia Song
28
+ and Alina Stoica and Saurabh Tiwary and Tong Wang},
29
+ year={2018},
30
+ eprint={1611.09268},
31
+ archivePrefix={arXiv},
32
+ primaryClass={cs.CL}
33
+ }
34
+ """
35
+
36
+ _DESCRIPTION = "dataset load script for MSMARCO Passage Corpus"
37
+
38
+ _DATASET_URLS = {
39
+ 'train': "https://huggingface.co/datasets/tevatron/msmarco-passage/resolve/main/corpus.jsonl.gz",
40
+ }
41
+
42
+
43
+ class MsMarcoPassageCorpus(datasets.GeneratorBasedBuilder):
44
+ VERSION = datasets.Version("0.0.1")
45
+
46
+ BUILDER_CONFIGS = [
47
+ datasets.BuilderConfig(version=VERSION,
48
+ description="MS MARCO passage Corpus"),
49
+ ]
50
+
51
+ def _info(self):
52
+ features = datasets.Features(
53
+ {'docid': datasets.Value('string'), 'text': datasets.Value('string')}
54
+ )
55
+
56
+ return datasets.DatasetInfo(
57
+ # This is the description that will appear on the datasets page.
58
+ description=_DESCRIPTION,
59
+ # This defines the different columns of the dataset and their types
60
+ features=features, # Here we define them above because they are different between the two configurations
61
+ supervised_keys=None,
62
+ # Homepage of the dataset for documentation
63
+ homepage="",
64
+ # License for the dataset if available
65
+ license="",
66
+ # Citation for the dataset
67
+ citation=_CITATION,
68
+ )
69
+
70
+ def _split_generators(self, dl_manager):
71
+ downloaded_files = dl_manager.download_and_extract(_DATASET_URLS)
72
+ splits = [
73
+ datasets.SplitGenerator(
74
+ name="train",
75
+ gen_kwargs={
76
+ "filepath": downloaded_files["train"],
77
+ },
78
+ ),
79
+ ]
80
+ return splits
81
+
82
+ def _generate_examples(self, filepath):
83
+ """Yields examples."""
84
+ with open(filepath, encoding="utf-8") as f:
85
+ for line in f:
86
+ data = json.loads(line)
87
+ yield data['docid'], data