File size: 1,938 Bytes
268f788
 
8472d60
 
 
 
 
 
 
 
 
 
 
 
5516d69
8472d60
 
 
 
 
 
 
 
5516d69
 
8472d60
 
5516d69
8472d60
 
 
 
 
 
 
 
 
5516d69
8472d60
 
5516d69
 
 
 
 
 
 
 
 
 
 
8472d60
 
 
 
5516d69
 
 
 
 
 
 
 
8472d60
 
 
5516d69
 
8472d60
 
 
 
 
 
268f788
 
 
8472d60
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
#!/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, '../../'))

import pandas as pd
from tqdm import tqdm

from project_settings import project_path


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

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

    parser.add_argument(
        "--output_file",
        default=(project_path / "data/youtube_spam_collection.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 f:
        for filename in data_dir.glob("*.csv"):
            df = pd.read_csv(filename.as_posix())

            for i, row in tqdm(df.iterrows(), total=len(df)):
                # print(row)
                text = row["CONTENT"]
                label = row["CLASS"]

                text = text.replace("", "")

                label = "spam" if label == 1 else "ham"

                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": filename.stem,
                    "data_source": "youtube_spam_collection",
                    "split": split
                }
                row = json.dumps(row, ensure_ascii=False)
                f.write("{}\n".format(row))

    return


if __name__ == '__main__':
    main()