cjziems commited on
Commit
01fd7dd
1 Parent(s): 1019729

Upload 3 files

Browse files
Files changed (3) hide show
  1. corpus.jsonl.gz +3 -0
  2. queries.jsonl.gz +3 -0
  3. wiki-balance-natural.py +59 -0
corpus.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5cb864d36a1844e23a9a9509c944c44487e0a1bac9e41df5f502e5b9a3bc575f
3
+ size 32014178
queries.jsonl.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfcfa189ef3b1db7af616f98d015128c961b9bcf0497f1ffb03513e1f987a17c
3
+ size 24854
wiki-balance-natural.py ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ import csv
3
+ import os
4
+ import datasets
5
+
6
+ logger = datasets.logging.get_logger(__name__)
7
+
8
+ _DESCRIPTION = "WikiBalance Natural"
9
+ _SPLITS = ["corpus", "queries"]
10
+
11
+ URL = ""
12
+ _URLs = {subset: URL + f"{subset}.jsonl.gz" for subset in _SPLITS}
13
+
14
+ class PAIR(datasets.GeneratorBasedBuilder):
15
+ """PAIR BenchmarkDataset."""
16
+
17
+ BUILDER_CONFIGS = [
18
+ datasets.BuilderConfig(
19
+ name=name,
20
+ description=f"This is the {name} in the WikiBalance Natural 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
+ "subset": self.config.name},
48
+ ),
49
+ ]
50
+
51
+ def _generate_examples(self, filepath, subset):
52
+ """Yields examples."""
53
+ with open(f"{filepath}/{subset}.jsonl", encoding="utf-8") as f:
54
+ texts = f.readlines()
55
+ for i, text in enumerate(texts):
56
+ text = json.loads(text)
57
+ if 'metadata' in text: del text['metadata']
58
+ if "title" not in text: text["title"] = ""
59
+ yield i, text