-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.py
executable file
·307 lines (255 loc) · 13.6 KB
/
main.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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
import argparse
import time
import pandas as pd
import yaml
import wandb
from src import (CNN_FM, DeepCoNN, DeepCrossNetworkModel,
FactorizationMachineModel,
FieldAwareFactorizationMachineModel,
NeuralCollaborativeFiltering, WideAndDeepModel,
seed_everything)
from src.data import (context_data_load, context_data_loader,
context_data_split, dl_data_load, dl_data_loader,
dl_data_split, image_data_load, image_data_loader,
image_data_split, text_data_load, text_data_loader,
text_data_split)
def main(args):
wandb.init(
project="minju-test",
entity="boostcamp_l1_recsys05",
name=f"experiment_{args.MODEL}",
# Track hyperparameters and run metadata
config={
"epochs": args.EPOCHS,
"batch_size": args.BATCH_SIZE,
"lr": args.LR
})
seed_everything(args.SEED)
############## WANDB START
wandb.init(
project="schini-test",
entity="boostcamp_l1_recsys05",
name=f"experiment_{args.MODEL}",
# Track hyperparameters and run metadata
config={
"epochs": args.EPOCHS,
"batch_size": args.BATCH_SIZE,
"lr": args.LR,
"embed_dim": 16
})
"""
sweep_configuration = {
'method': 'bayes',
'name': 'sweep',
'metric': {'goal': 'minimize', 'name': 'rmse'},
'parameters':{
'batch_size': {'max': 2048, 'min': 512},
'epochs': {'max': 20, 'min': 5},
'lr': {'max': 0.002, 'min': 0.0005 }
}}
sweep_configuration = {
'method': 'bayes',
'name': 'sweep',
'metric': {'goal': 'minimize', 'name': 'rmse'},
'parameters':{
'emb_dim':{'max': 32, 'min': 8 }
}}
config={
"epochs": args.EPOCHS,
"batch_size": args.BATCH_SIZE,
"lr": args.LR,
"emb_dim": 16
}
=======
}"""
######################## DATA LOAD
print(f'--------------- {args.MODEL} Load Data ---------------')
if args.MODEL in ('FM', 'FFM'):
data = context_data_load(args)
elif args.MODEL in ('NCF', 'WDN', 'DCN'):
data = dl_data_load(args)
elif args.MODEL == 'CNN_FM':
data = image_data_load(args)
elif args.MODEL == 'DeepCoNN':
import nltk
nltk.download('punkt')
data = text_data_load(args)
else:
pass
######################## Train/Valid Split
print(f'--------------- {args.MODEL} Train/Valid Split ---------------')
if args.MODEL in ('FM', 'FFM'):
data = context_data_split(args, data)
train_dataset, valid_dataset, data = context_data_loader(args, data)
elif args.MODEL in ('NCF', 'WDN', 'DCN'):
data = dl_data_split(args, data)
data = dl_data_loader(args, data)
elif args.MODEL=='CNN_FM':
data = image_data_split(args, data)
data = image_data_loader(args, data)
elif args.MODEL=='DeepCoNN':
data = text_data_split(args, data)
data = text_data_loader(args, data)
else:
pass
######################## Model
print(f'--------------- INIT {args.MODEL} ---------------')
if args.MODEL=='FM':
model = FactorizationMachineModel(args, train_dataset, valid_dataset, data)
elif args.MODEL=='FFM':
model = FieldAwareFactorizationMachineModel(args, data)
elif args.MODEL=='NCF':
model = NeuralCollaborativeFiltering(args, data)
elif args.MODEL=='WDN':
model = WideAndDeepModel(args, data)
elif args.MODEL=='DCN':
model = DeepCrossNetworkModel(args, data)
elif args.MODEL=='CNN_FM':
model = CNN_FM(args, data)
elif args.MODEL=='DeepCoNN':
model = DeepCoNN(args, data)
else:
pass
# wandb.config.update(args)
#wandb.config.update(args)
# wandb.watch(model)
######################## TRAIN
print(f'--------------- {args.MODEL} TRAINING ---------------')
rmse = model.train()
######################## INFERENCE
print(f'--------------- {args.MODEL} PREDICT ---------------')
if args.MODEL in ('FM', 'FFM', 'NCF', 'WDN', 'DCN'):
predicts = model.predict(data['test_dataloader'])
elif args.MODEL=='CNN_FM':
predicts = model.predict(data['test_dataloader'])
elif args.MODEL=='DeepCoNN':
predicts = model.predict(data['test_dataloader'])
else:
pass
######################## PREDICT GET IN RANGE
def adjust_predict(y):
if y < 1.0:
return 1.0
elif y > 10.0:
return 10.0
return y
predicts = list(map(adjust_predict, predicts))
######################## SAVE PREDICT
print(f'--------------- SAVE {args.MODEL} PREDICT ---------------')
submission = pd.read_csv(args.DATA_PATH + 'sample_submission.csv')
if args.MODEL in ('FM', 'FFM', 'NCF', 'WDN', 'DCN', 'CNN_FM', 'DeepCoNN'):
submission['rating'] = predicts
else:
pass
#기존 파일 저장 방식
now = time.localtime()
now_date = time.strftime('%Y%m%d', now)
now_hour = time.strftime('%X', now)
save_time = now_date + '_' + now_hour.replace(':', '')
submission.to_csv('submit/{}_{}_{}_{}.csv'.format(save_time, args.MODEL, round(rmse, 5), 'origin'), index=False)
# '''
# rule-based
# '''
# #########################
# train = pd.read_csv(args.DATA_PATH + 'train_ratings.csv')
# n_thres = 5; k = 0.5
# #########################
# # user-based
# count = train.groupby("user_id").size()
# dfcount = pd.DataFrame(count, columns=["count"])
# train = pd.merge(train, dfcount, how='left', on='user_id')
# submission = pd.merge(submission, dfcount, how='left', on='user_id')
# submission['count'] = submission['count'].fillna(0)
# submission.set_index("user_id", inplace = True)
# for row in submission.itertuples():
# if row[3] == 0 : # train에서 등장하지 않았던 user_id
# submission.at[row[0],'rating'] = 7 # 1개 user_id 평균
# else:
# if train[train['user_id']==row[0]]['count'].mean() >= n_thres : # n_thres 번 이상 rating 매긴 user_id
# if train[train['user_id']==row[0]]['rating'].std() <= k: # 각자 매긴 rating 의 표준편차가 k 이하인 사람에게만 적용
# # submission.at[row[0], 'rating'] = train[train['isbn']==row[0]]['rating'].mean()
# ##### 표준편차 기준 더 작게 하고 round 씌워서 돌려보기
# submission.at[row[0], 'rating'] = round(train[train['user_id']==row[0]]['rating'].mean())
# #####
# # drop "count"
# submission = submission.drop(['count'], axis=1)
# train = train.drop(['count'], axis=1)
# submission = submission.reset_index()
# # item-based
# count = train.groupby('isbn').size()
# dfcount = pd.DataFrame(count, columns=['count'])
# train = pd.merge(train, dfcount, how='left', on='isbn')
# submission = pd.merge(submission, dfcount, how='left', on='isbn')
# submission['count'] = submission['count'].fillna(0)
# isbnlist = set()
# for row in submission.itertuples():
# if row[0] not in isbnlist:
# if row[3] == 0 : # train에서 등장하지 않았던 isbn
# submission.at[row[0], 'rating'] = 6.884027966331795 # 1개 isbn 평균
# else:
# if train[train['isbn']==row[1]]['count'].mean() >= n_thres : # n_thres 명 이상 rating 매긴 isbn
# if train[train['user_id']== row[1]]['rating'].std() <= k: # 각자 매긴 rating 의 표준편차가 k 이하인 사람에게만 적용
# # submission.at[row[0],'rating'] = train[train['isbn']== row[0]]['rating'].mean()
# ##### 표준편차 기준 더 작게 하고 round 씌워서 돌려보기
# submission.at[row[0], 'rating'] = round(train[train['isbn']==row[1]]['rating'].mean())
# #####
# isbnlist.add(row[0])
# submission = submission.reset_index()
# submission = submission.drop(['count'], axis=1)
# now = time.localtime()
# now_date = time.strftime('%Y%m%d', now)
# now_hour = time.strftime('%X', now)
# save_time = now_date + '_' + now_hour.replace(':', '')
# submission.to_csv('submit/{}_{}_{}_{}_{}_{}.csv'.format(save_time, args.MODEL, round(rmse, 5), n_thres, k, 'user_isbn', index=False))
# #########################
if __name__ == "__main__":
######################## BASIC ENVIRONMENT SETUP
parser = argparse.ArgumentParser(description='parser')
arg = parser.add_argument
############### BASIC OPTION
arg('--DATA_PATH', type=str, default='data/', help='Data path를 설정할 수 있습니다.')
arg('--MODEL', type=str, choices=['FM', 'FFM', 'NCF', 'WDN', 'DCN', 'CNN_FM', 'DeepCoNN'],
help='학습 및 예측할 모델을 선택할 수 있습니다.')
arg('--DATA_SHUFFLE', type=bool, default=True, help='데이터 셔플 여부를 조정할 수 있습니다.')
arg('--TEST_SIZE', type=float, default=0.2, help='Train/Valid split 비율을 조정할 수 있습니다.')
arg('--SEED', type=int, default=42, help='seed 값을 조정할 수 있습니다.')
############### TRAINING OPTION
arg('--BATCH_SIZE', type=int, default=1024, help='Batch size를 조정할 수 있습니다.')
arg('--EPOCHS', type=int, default=10, help='Epoch 수를 조정할 수 있습니다.')
arg('--LR', type=float, default=1e-3, help='Learning Rate를 조정할 수 있습니다.')
arg('--WEIGHT_DECAY', type=float, default=1e-6, help='Adam optimizer에서 정규화에 사용하는 값을 조정할 수 있습니다.')
arg('--SPLIT_OPT', type=str, default='tts', help='train-test-split 옵션을 선택할 수 있습니다. (tts / kfold / skf)')
############### GPU
arg('--DEVICE', type=str, default='cuda', choices=['cuda', 'cpu'], help='학습에 사용할 Device를 조정할 수 있습니다.')
############### FM
arg('--FM_EMBED_DIM', type=int, default=16, help='FM에서 embedding시킬 차원을 조정할 수 있습니다.')
############### FFM
arg('--FFM_EMBED_DIM', type=int, default=16, help='FFM에서 embedding시킬 차원을 조정할 수 있습니다.')
############### NCF
arg('--NCF_EMBED_DIM', type=int, default=16, help='NCF에서 embedding시킬 차원을 조정할 수 있습니다.')
arg('--NCF_MLP_DIMS', type=list, default=(16, 16), help='NCF에서 MLP Network의 차원을 조정할 수 있습니다.')
arg('--NCF_DROPOUT', type=float, default=0.2, help='NCF에서 Dropout rate를 조정할 수 있습니다.')
############### WDN
arg('--WDN_EMBED_DIM', type=int, default=16, help='WDN에서 embedding시킬 차원을 조정할 수 있습니다.')
arg('--WDN_MLP_DIMS', type=list, default=(16, 16), help='WDN에서 MLP Network의 차원을 조정할 수 있습니다.')
arg('--WDN_DROPOUT', type=float, default=0.2, help='WDN에서 Dropout rate를 조정할 수 있습니다.')
############### DCN
arg('--DCN_EMBED_DIM', type=int, default=16, help='DCN에서 embedding시킬 차원을 조정할 수 있습니다.')
arg('--DCN_MLP_DIMS', type=list, default=(16, 16), help='DCN에서 MLP Network의 차원을 조정할 수 있습니다.')
arg('--DCN_DROPOUT', type=float, default=0.2, help='DCN에서 Dropout rate를 조정할 수 있습니다.')
arg('--DCN_NUM_LAYERS', type=int, default=3, help='DCN에서 Cross Network의 레이어 수를 조정할 수 있습니다.')
############### CNN_FM
arg('--CNN_FM_EMBED_DIM', type=int, default=128, help='CNN_FM에서 user와 item에 대한 embedding시킬 차원을 조정할 수 있습니다.')
arg('--CNN_FM_LATENT_DIM', type=int, default=8, help='CNN_FM에서 user/item/image에 대한 latent 차원을 조정할 수 있습니다.')
############### DeepCoNN
arg('--DEEPCONN_VECTOR_CREATE', type=bool, default=False, help='DEEP_CONN에서 text vector 생성 여부를 조정할 수 있으며 최초 학습에만 True로 설정하여야합니다.')
arg('--DEEPCONN_EMBED_DIM', type=int, default=32, help='DEEP_CONN에서 user와 item에 대한 embedding시킬 차원을 조정할 수 있습니다.')
arg('--DEEPCONN_LATENT_DIM', type=int, default=10, help='DEEP_CONN에서 user/item/image에 대한 latent 차원을 조정할 수 있습니다.')
arg('--DEEPCONN_CONV_1D_OUT_DIM', type=int, default=50, help='DEEP_CONN에서 1D conv의 출력 크기를 조정할 수 있습니다.')
arg('--DEEPCONN_KERNEL_SIZE', type=int, default=3, help='DEEP_CONN에서 1D conv의 kernel 크기를 조정할 수 있습니다.')
arg('--DEEPCONN_WORD_DIM', type=int, default=768, help='DEEP_CONN에서 1D conv의 입력 크기를 조정할 수 있습니다.')
arg('--DEEPCONN_OUT_DIM', type=int, default=32, help='DEEP_CONN에서 1D conv의 출력 크기를 조정할 수 있습니다.')
############### WANDB
arg('--WANDB_SWEEP', type=bool, default=False, help='WANDB_SWEEP을 돌렸을 떄 TRUE 로 설정')
args = parser.parse_args()
main(args)