File size: 2,380 Bytes
27bb1fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
88
89
90
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import argparse
from collections import defaultdict
import json
import os
from pathlib import Path
import random
import re
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/trec07p/full", type=str)
    parser.add_argument(
        "--output_file",
        default=(project_path / "data/trec07p.jsonl"),
        type=str
    )
    args = parser.parse_args()
    return args


def main():
    args = get_args()

    data_dir = Path(args.data_dir)

    full_index = data_dir / "index"

    with open(args.output_file, "w", encoding="utf-8") as fout:
        with open(full_index.as_posix(), "r", encoding="utf-8") as fin:
            for row in fin:
                row = str(row).strip()
                row = row.split(" ", maxsplit=1)

                if len(row) != 2:
                    print(row)
                    raise AssertionError

                label = row[0]
                fn = row[1]
                filename = data_dir / fn

                for encoding in ("utf-8", "gbk", "ANSI"):
                    try:
                        with open(filename.as_posix(), "r", encoding=encoding) as finmail:
                            text = finmail.read()
                    except UnicodeDecodeError:
                        # print(filename.as_posix())
                        # print("UnicodeDecodeError")
                        continue

                if label not in ("spam", "ham"):
                    raise AssertionError

                num = random.random()
                if num < 0.9:
                    split = "train"
                elif num < 0.95:
                    split = "validation"
                else:
                    split = "test"

                row = {
                    "text": text,
                    "label": label,
                    "category": None,
                    "data_source": "trec07p",
                    "split": split
                }
                row = json.dumps(row, ensure_ascii=False)
                fout.write("{}\n".format(row))

    return


if __name__ == '__main__':
    main()