Konrad Wojtasik commited on
Commit
145baea
1 Parent(s): 7f88217

Add dataset

Browse files
Files changed (3) hide show
  1. corpus.jsonl.gz +3 -0
  2. hotpotqa-pl.py +58 -0
  3. queries.jsonl.gz +3 -0
corpus.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b92656464b59c28cacd70a8d4c84b1afdb09b738ec3d5b16c28add6d9de3a067
3
+ size 731068499
hotpotqa-pl.py ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ import csv
3
+ import os
4
+ import datasets
5
+
6
+ logger = datasets.logging.get_logger(__name__)
7
+
8
+ _DESCRIPTION = "HOTPOTQA-PL Dataset"
9
+ _SPLITS = ["corpus", "queries"]
10
+
11
+ URL = ""
12
+ _URLs = {subset: URL + f"{subset}.jsonl.gz" for subset in _SPLITS}
13
+
14
+ class BEIR(datasets.GeneratorBasedBuilder):
15
+ """BEIR-PL BenchmarkDataset."""
16
+
17
+ BUILDER_CONFIGS = [
18
+ datasets.BuilderConfig(
19
+ name=name,
20
+ description=f"This is the {name} in the Scifact-PL dataset.",
21
+ ) for name in _SPLITS
22
+ ]
23
+
24
+ def _info(self):
25
+
26
+ return datasets.DatasetInfo(
27
+ description=_DESCRIPTION,
28
+ features=datasets.Features({
29
+ "_id": datasets.Value("string"),
30
+ "title": datasets.Value("string"),
31
+ "text": datasets.Value("string"),
32
+ }),
33
+ supervised_keys=None,
34
+ )
35
+
36
+ def _split_generators(self, dl_manager):
37
+ """Returns SplitGenerators."""
38
+
39
+ my_urls = _URLs[self.config.name]
40
+ data_dir = dl_manager.download_and_extract(my_urls)
41
+
42
+ return [
43
+ datasets.SplitGenerator(
44
+ name=self.config.name,
45
+ # These kwargs will be passed to _generate_examples
46
+ gen_kwargs={"filepath": data_dir},
47
+ ),
48
+ ]
49
+
50
+ def _generate_examples(self, filepath):
51
+ """Yields examples."""
52
+ with open(filepath, encoding="utf-8") as f:
53
+ texts = f.readlines()
54
+ for i, text in enumerate(texts):
55
+ text = json.loads(text)
56
+ if 'metadata' in text: del text['metadata']
57
+ if "title" not in text: text["title"] = ""
58
+ yield i, text
queries.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:235e34c0a5ab933218f78c26420d9dc4d56de970340cd3a5c2d9dabe77f268ba
3
+ size 9465823