-
Notifications
You must be signed in to change notification settings - Fork 0
/
preprocess.py
268 lines (202 loc) · 8.53 KB
/
preprocess.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
"""
データセットの準備など,前処理のモジュール
"""
import os
import re
import argparse
from config import common_args, Parameters
from gen_finetune import clean_txt
from utils import dump_params, setup_params, get_device
from utils import set_logging
import logging
from typing import Any
import pandas as pd
import nlp
from sklearn.model_selection import StratifiedKFold
from transformers import GPT2Tokenizer, GPT2LMHeadModel
import numpy as np
import math
logger = logging.getLogger(__name__)
def text_gen(params, df) -> Any:
"""データセットから新たにテキストデータ生成
データセットサイズの増加を測るため,HuggingFaceのText Generation機能を用いてテキストを生成する.
Args:
params: パラメータ
df: 元データセット
Returns:
df_over: 生成済データセット
Examples:
関数の使い方
Raises:
例外の名前: 例外の説明
Yields:
戻り値の型: 戻り値についての説明
Note:
注意事項
"""
logger.info('Generating Text ...')
label_num = params.num_classes - 1
for i in range(0, label_num):
for n, text in enumerate(df[df['labels'] == i].description):
df_size = df[df['labels'] == i].description.size # 1job当たりのデータサイズ
gen_num = math.ceil((params.sampling_num - df_size) / df_size) # 生成回数
txt_len_min = df[df['labels'] == i].description.str.len().min()
txt_len_max = df[df['labels'] == i].description.str.len().max()
df_txt_len = df[df['labels'] == i].description.str.len().median() # 生成文字列数
target_text = text.split('.', 2)[0] + "."
# テキスト生成
# pipeline方法
# generator = pipeline('text-generation', model=params.gen_model_name, device=0)
# set_seed(params.seed)
# # output = generator(target_text, max_length=txt_len_max, do_sample=True, top_k=50,
# # temperature=0.6, num_return_sequences=1)
# for l in range(0, gen_num):
# output = generator(target_text, max_length=txt_len_max, num_return_sequences=1)
tokenizer = GPT2Tokenizer.from_pretrained('gpt2-large')
model = GPT2LMHeadModel.from_pretrained('gpt2-large', pad_token_id=tokenizer.eos_token_id)
# model = model.to(params.device) # GPU指定でエラー吐く
input_ids = tokenizer.encode(target_text, return_tensors='pt')
# 生成
output = model.generate(input_ids, max_length=txt_len_max, num_beams=5,
no_repeat_ngram_size=2, early_stopping=True)
# 生成データ
text = tokenizer.decode(output[0], skip_special_tokens=True)
logger.info(text)
logger.info("============================================")
continue
df_over = 0
return df_over
def make_folded_df(params, csv_file, num_splits=5) -> Any:
"""データセット作成と前処理
データセットのロードとリサンプリングを処理
Args:
params: パラメータ
csv_file: ファイルパス
num_splits: 分割数
Returns:
df: データセット
Examples:
関数の使い方
Raises:
例外の名前: 例外の説明
Yields:
戻り値の型: 戻り値についての説明
Note:
注意事項
"""
logger.info('Loading Test Dataset...')
if params.ros == True:
logger.info("Random oversampling...")
df = pd.read_csv(csv_file) # ファイル読み込み
count_list = df["jobflag"].value_counts()
# Class count オーバーサンプリング数指定用
count_max = df["jobflag"].value_counts().max()
# count_max = params.sampling_num
# Divide by class
df_class_1 = df[df['jobflag'] == 1]
df_class_2 = df[df['jobflag'] == 2]
df_class_3 = df[df['jobflag'] == 3]
df_class_4 = df[df['jobflag'] == 4]
# リサンプリング(ROS)
df_class_1_over = df_class_1.sample(count_max, replace=True)
df_class_2_over = df_class_2.sample(count_max, replace=True)
df_class_3_over = df_class_3.sample(count_max, replace=True)
# df_class_4_over = df_class_4.sample(count_max, replace=True)
# Concat処理
df_over = pd.concat([df_class_1_over, df_class_2_over, df_class_3_over, df_class_4], axis=0).reset_index()
df_over = df_over.drop('index', axis=1)
# print('Random over-sampling:')
# print(df_over.jobflag.value_counts())
else:
logger.info("Reading dataset file...")
df = pd.read_csv(params.train_gen_file_path) # ファイル読み込み
count_list = df["jobflag"].value_counts()
logger.info("Dataset value")
logger.info(df["jobflag"].value_counts())
df_over = df
# クリーニング
df_over['description'] = clean_txt(df_over['description'])
# df_over['description'] = df_over['description'].apply(lambda x: re.findall(r"[a-zA-Z]+", x))
df = df_over
df["jobflag"] = df["jobflag"] - 1
df["kfold"] = np.nan
df = df.rename(columns={'jobflag': 'labels'})
label = df["labels"].tolist()
skfold = StratifiedKFold(num_splits, shuffle=True, random_state=params.seed)
for fold, (_, valid_indexes) in enumerate(skfold.split(range(len(label)), label)):
for i in valid_indexes:
df.iat[i, 3] = fold
return df
def make_dataset(params, df, tokenizer) -> Any:
"""BERT用に処理できるようなデータ形式に変換
Tokenizerを用いて文をIDに変換しデータセットを作成
Args:
params: パラメータ
df: 変換前データセット
tokenizer:
Returns:
datasets: 変換データセット
Examples:
関数の使い方
Raises:
例外の名前: 例外の説明
Yields:
戻り値の型: 戻り値についての説明
Note:
注意事項
"""
logger.info('Loading Test Dataset...')
dataset = nlp.Dataset.from_pandas(df)
dataset = dataset.map(
lambda example: tokenizer(example["description"],
padding="max_length",
truncation=True,
max_length=128))
dataset.set_format(type='torch',
columns=['input_ids', 'token_type_ids', 'attention_mask', 'labels'],
device=params.device)
return dataset
def make_dataset_roberta(params, df, tokenizer) -> Any:
"""RoBERTa用に処理できるようなデータ形式に変換
Tokenizerを用いて文をIDに変換しデータセットを作成
Args:
params: パラメータ
df: 変換前データセット
tokenizer:
Returns:
datasets: 変換データセット
Examples:
関数の使い方
Raises:
例外の名前: 例外の説明
Yields:
戻り値の型: 戻り値についての説明
Note:
注意事項
"""
logger.info('Loading Test Dataset...')
dataset = nlp.Dataset.from_pandas(df)
dataset = dataset.map(
lambda example: tokenizer(example["description"],
padding="max_length",
truncation=True,
max_length=128))
dataset.set_format(type='torch',
columns=['input_ids', 'attention_mask', 'labels'],
device=params.device)
return dataset
if __name__ == "__main__":
# import doctest
# doctest.testmod()
# コマンドライン引数の設定
parser = argparse.ArgumentParser()
parser = common_args(parser) # コマンドライン引数引数を読み込み
# parser.add_argument("--main") # 実行スクリプト固有のコマンドライン引数があればここに記入する.
args = parser.parse_args()
params = Parameters(**setup_params(vars(args), args.parameters)) # args,run_date,git_revisionなどを追加した辞書を取得
vars(params).update({'device': str(get_device())}) # 空きGPU検索
# trainデータセット作成
df = make_folded_df(params, params.train_file_path, params.num_split)
for fold in range(params.num_split):
train_df = df[df.kfold != fold].reset_index(drop=True)
valid_df = df[df.kfold == fold].reset_index(drop=True)