File size: 2,545 Bytes
4eff5ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import argparse
import json
import os
from pathlib import Path
import sys

pwd = os.path.abspath(os.path.dirname(__file__))
sys.path.append(os.path.join(pwd, '../../'))

from datasets import load_dataset
from tqdm import tqdm

from project_settings import project_path


def get_args():
    parser = argparse.ArgumentParser()

    parser.add_argument("--data_dir", default="./data/chinese_snli", type=str)

    parser.add_argument(
        "--output_file",
        default=(project_path / "data/chinese_snli.jsonl"),
        type=str
    )

    args = parser.parse_args()
    return args


def main():
    args = get_args()

    data_dir = Path(args.data_dir)

    with open(args.output_file, "w", encoding="utf-8") as fout:
        for name in ["cnsd_snli_v1.0.train.jsonl", "cnsd_snli_v1.0.dev.jsonl", "cnsd_snli_v1.0.test.jsonl"]:
            filename = data_dir / name
            with open(filename, "r", encoding="utf-8") as fin:
                for row in fin:
                    row = json.loads(row)
                    sentence1 = row["sentence1"]
                    sentence2 = row["sentence2"]
                    gold_label = row["gold_label"]

                    if gold_label not in ("entailment", "neutral", "contradiction", "-"):
                        print(gold_label)
                        raise AssertionError

                    if gold_label in ("-",):
                        continue

                    label = "1" if gold_label in ("entailment",) else "0"
                    category = gold_label

                    if name == "cnsd_snli_v1.0.train.jsonl":
                        flag = "train"
                    elif name == "cnsd_snli_v1.0.dev.jsonl":
                        flag = "validation"
                    elif name == "cnsd_snli_v1.0.test.jsonl":
                        flag = "test"
                    else:
                        raise AssertionError

                    if label not in ("0", "1", None):
                        raise AssertionError

                    row = {
                        "sentence1": sentence1,
                        "sentence2": sentence2,
                        "label": label,
                        "category": category,
                        "data_source": "Chinese-SNLI",
                        "split": flag
                    }

                    row = json.dumps(row, ensure_ascii=False)
                    fout.write("{}\n".format(row))

    return


if __name__ == '__main__':
    main()