File size: 1,607 Bytes
dcca2ec
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import argparse
import json
from pathlib import Path

import pandas as pd
from tqdm import tqdm

from project_settings import project_path


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

    parser.add_argument(
        "--data_file",
        default=(project_path / "original_data/qingyun-11w/12万对话语料青云库.csv").as_posix(),
        type=str
    )
    parser.add_argument(
        "--output_file",
        default=(project_path / "data/qingyun.jsonl"),
        type=str
    )

    args = parser.parse_args()
    return args


def main():
    args = get_args()

    with open(args.data_file, "r", encoding="utf-8") as fin, \
         open(args.output_file, "w", encoding="utf-8") as fout:
        for row in fin:
            row = str(row).strip()
            splits = row.split(" | ")
            if len(splits) != 2:
                print(row)
                raise AssertionError

            question = splits[0].strip()
            answer = splits[1].strip()

            row = {
                "conversation": [
                    {
                        "role": "human",
                        "message": question,
                    },
                    {
                        "role": "assistant",
                        "message": answer,
                    },
                ],
                "category": None,
                "data_source": "qingyun",
            }
            row = json.dumps(row, ensure_ascii=False)
            fout.write("{}\n".format(row))

    return


if __name__ == '__main__':
    main()