-
Notifications
You must be signed in to change notification settings - Fork 19
/
article_to_json.py
66 lines (50 loc) · 1.74 KB
/
article_to_json.py
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
# -*- coding: utf-8 -*-
import argparse
import time
import os
import pandas as pd
import ast
import json
import six
import glob
import numpy as np
from tqdm import tqdm
def main():
parser = argparse.ArgumentParser()
parser.add_argument('-mode', default='train', type=str, choices=['train','valid','test'])
parser.add_argument('-news_dir', default='', type=str, help='target file to json')
parser.add_argument('-output', default='', type=str, help='json output directory')
# parser.random_state("-random_state", defalut="", type=int, help="random state")
args = parser.parse_args()
mode = args.mode
news_dir = args.news_dir
output = args.output
# Initialize directory
if not os.path.exists(output):
os.makedirs(directory)
if not news_dir.endswith("csv"):
raise AssertionError("file is not a csv")
### main process ###
mydf = pd.read_csv(news_dir)
list_dic = []
for idx, row in mydf.iterrows():
raw = row['article_morp']
target_idx = ast.literal_eval(row['extractive'])
sentences = raw.split(' ./SF ')[:-1]
src = [i.split(' ') for i in sentences]
tgt = [a for i,a in enumerate(src) if i in target_idx]
mydict = {}
mydict['src'] = src
mydict['tgt'] = tgt
list_dic.append(mydict)
temp = []
for i,a in enumerate(tqdm(list_dic)):
if (i+1)%6!=0:
temp.append(a)
else:
filename = 'korean.'+mode+'.'+str(i//6)+'.json'
with open(output+"/"+filename, "w", encoding='utf8') as json_file:
json.dump(temp, json_file, ensure_ascii=False)
temp = []
if __name__ == '__main__':
main()