|
|
|
|
|
import argparse |
|
import json |
|
from pathlib import Path |
|
|
|
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/tieba.dialogues").as_posix(), |
|
type=str |
|
) |
|
parser.add_argument( |
|
"--output_file", |
|
default=(project_path / "data/tieba.jsonl"), |
|
type=str |
|
) |
|
|
|
args = parser.parse_args() |
|
return args |
|
|
|
|
|
def main(): |
|
args = get_args() |
|
|
|
with open(args.output_file, "w", encoding="utf-8") as fout: |
|
with open(args.data_file, "r", encoding="utf-8") as fin: |
|
for row in fin: |
|
splits = str(row).strip().split("\t") |
|
if len(splits) != 2: |
|
print(row) |
|
raise AssertionError |
|
|
|
row = { |
|
"conversation": [ |
|
{ |
|
"role": "human", |
|
"message": splits[0], |
|
}, |
|
{ |
|
"role": "assistant", |
|
"message": splits[1], |
|
} |
|
], |
|
"category": None, |
|
"data_source": "tieba", |
|
} |
|
row = json.dumps(row, ensure_ascii=False) |
|
fout.write("{}\n".format(row)) |
|
|
|
return |
|
|
|
|
|
if __name__ == '__main__': |
|
main() |
|
|