Convert dataset to Parquet

#1
by mpkato - opened
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: query_id
5
+ dtype: string
6
+ - name: query
7
+ dtype: string
8
+ - name: positive_passages
9
+ list:
10
+ - name: docid
11
+ dtype: string
12
+ - name: text
13
+ dtype: string
14
+ - name: title
15
+ dtype: string
16
+ - name: negative_passages
17
+ list:
18
+ - name: docid
19
+ dtype: string
20
+ - name: text
21
+ dtype: string
22
+ - name: title
23
+ dtype: string
24
+ splits:
25
+ - name: train
26
+ num_bytes: 29193126
27
+ num_examples: 3292
28
+ - name: dev
29
+ num_bytes: 7114857
30
+ num_examples: 860
31
+ download_size: 21188455
32
+ dataset_size: 36307983
33
+ configs:
34
+ - config_name: default
35
+ data_files:
36
+ - split: train
37
+ path: data/train-*
38
+ - split: dev
39
+ path: data/dev-*
40
+ ---
create_miracl_japanese_small.py DELETED
@@ -1,16 +0,0 @@
1
- import json
2
- from tqdm import tqdm
3
- from datasets import load_dataset
4
-
5
- OUTPUT_FILEPATHS = {
6
- "train": "./topics.miracl-v1.0-ja-train.jsonl",
7
- "dev": "./topics.miracl-v1.0-ja-dev.jsonl"
8
- }
9
-
10
- if __name__ == '__main__':
11
- dataset = load_dataset("miracl/miracl", "ja")
12
- for split in OUTPUT_FILEPATHS:
13
- with open(OUTPUT_FILEPATHS[split], 'w', encoding='utf-8') as f:
14
- for data in tqdm(dataset[split]):
15
- if not split == 'train' or len(data['negative_passages']) > 0:
16
- f.write(json.dumps(data) + '\n')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
topics.miracl-v1.0-ja-dev.jsonl.gz → data/dev-00000-of-00001.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:27c571e461fccd9b90b7abe69c2d04b7d9de3d25bbc80cc92327ec076e17c786
3
- size 3027623
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:475a231ea2ddc7a5ed4af25f2e1dd789b9330ec7cc08caa2a89e62b529530eb8
3
+ size 4135567
topics.miracl-v1.0-ja-train.jsonl.gz → data/train-00000-of-00001.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a6124e784fd0ffdffcf1689d5090dc6961a8be889791bc04ec438aafcaf58276
3
- size 12469053
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d088f9e33dd3fbc936400abc39a5fd4f2f9c50b00fbc58838b108a5eb71f6039
3
+ size 17052888
miracl-japanese-small.py DELETED
@@ -1,95 +0,0 @@
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.
15
-
16
- # Lint as: python3
17
-
18
- import json
19
- import datasets
20
-
21
- _CITATION = """
22
- """
23
-
24
- _DESCRIPTION = "dataset load script for MIRACL Japanese Small"
25
-
26
- _DATASET_URLS = {
27
- 'train': 'https://huggingface.co/datasets/mpkato/miracl-japanese-small/resolve/main/topics.miracl-v1.0-ja-train.jsonl.gz',
28
- 'dev': 'https://huggingface.co/datasets/mpkato/miracl-japanese-small/resolve/main/topics.miracl-v1.0-ja-dev.jsonl.gz',
29
- }
30
-
31
-
32
- class MIRACLJapaneseSmall(datasets.GeneratorBasedBuilder):
33
- BUILDER_CONFIGS = [
34
- datasets.BuilderConfig(
35
- version=datasets.Version('1.0.0'),
36
- description=f'MIRACL Japanese Small dataset.'
37
- )
38
- ]
39
-
40
- def _info(self):
41
- features = datasets.Features({
42
- 'query_id': datasets.Value('string'),
43
- 'query': datasets.Value('string'),
44
- 'positive_passages': [
45
- {'docid': datasets.Value('string'), 'text': datasets.Value('string'),
46
- 'title': datasets.Value('string')}
47
- ],
48
- 'negative_passages': [
49
- {'docid': datasets.Value('string'), 'text': datasets.Value('string'),
50
- 'title': datasets.Value('string')}
51
- ],
52
- })
53
-
54
- return datasets.DatasetInfo(
55
- # This is the description that will appear on the datasets page.
56
- description=_DESCRIPTION,
57
- # This defines the different columns of the dataset and their types
58
- features=features, # Here we define them above because they are different between the two configurations
59
- supervised_keys=None,
60
- # Homepage of the dataset for documentation
61
- homepage="",
62
- # License for the dataset if available
63
- license="",
64
- # Citation for the dataset
65
- citation=_CITATION,
66
- )
67
-
68
- def _split_generators(self, dl_manager):
69
- downloaded_files = dl_manager.download_and_extract(_DATASET_URLS)
70
- splits = [
71
- datasets.SplitGenerator(
72
- name="train",
73
- gen_kwargs={
74
- "filepath": downloaded_files["train"],
75
- },
76
- ),
77
- datasets.SplitGenerator(
78
- name='dev',
79
- gen_kwargs={
80
- "filepath": downloaded_files["dev"],
81
- },
82
- ),
83
- ]
84
- return splits
85
-
86
- def _generate_examples(self, filepath):
87
- """Yields examples."""
88
- with open(filepath, encoding="utf-8") as f:
89
- for line in f:
90
- data = json.loads(line)
91
- if data.get('negative_passages') is None:
92
- data['negative_passages'] = []
93
- if data.get('positive_passages') is None:
94
- data['positive_passages'] = []
95
- yield data['query_id'], data
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
qrels.miracl-v1.0-ja-dev.tsv DELETED
The diff for this file is too large to render. See raw diff
 
qrels.miracl-v1.0-ja-train.tsv DELETED
The diff for this file is too large to render. See raw diff