-
Notifications
You must be signed in to change notification settings - Fork 1
/
fusion_node.py
executable file
·426 lines (361 loc) · 14.3 KB
/
fusion_node.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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
'''
Created on December 21, 2021
@author: Tongya Zheng ([email protected])
'''
__author__ = "zhengtongya"
import math
import os
import sys
import numpy as np
import torch
from sklearn.metrics import roc_auc_score
from tqdm import trange
from args_config import node_args_config
from data_util import load_data
from fusion import SamplingFusion
from graph import NeighborFinder
from gumbel_alpha import GumbelGAN
from neighbor_loader import BiSamplingNFinder
from util import EarlyStopMonitor, set_logger, set_random_seed
#import numba
class LR(torch.nn.Module):
def __init__(self, dim, drop=0.1):
super().__init__()
self.fc_1 = torch.nn.Linear(dim, dim // 2)
self.fc_2 = torch.nn.Linear(dim // 2, dim // 4)
self.fc_3 = torch.nn.Linear(dim // 4, 1)
self.act = torch.nn.ReLU()
self.dropout = torch.nn.Dropout(p=drop, inplace=True)
def forward(self, x):
x = self.act(self.fc_1(x))
x = self.dropout(x)
x = self.act(self.fc_2(x))
x = self.dropout(x)
return self.fc_3(x).squeeze(dim=1)
set_random_seed()
# Argument and global variables
try:
parser = node_args_config()
args = parser.parse_args()
except:
parser.print_help()
sys.exit(0)
# Arguments
if True:
KSAMPLERS = 2
VAL_TIME = args.val_time
NODE_LAYER = args.node_layer
BALANCE = args.balance
NEG_RATIO = args.neg_ratio
BINARY = args.binary
FREEZE = args.freeze
GUMBEL_FREEZE = False
BATCH_SIZE = args.bs
NUM_NEIGHBORS = args.n_degree
NUM_NEG = 1
NUM_EPOCH = args.n_epoch
NUM_HEADS = args.n_head
DROP_OUT = args.drop_out
GPU = args.gpu
UNIFORM = args.uniform
ALPHA = args.alpha
USE_TIME = args.time
AGG_METHOD = args.agg_method
ATTN_MODE = args.attn_mode
SEQ_LEN = NUM_NEIGHBORS // KSAMPLERS
DATA = args.data
TASK = args.task
HARD = args.hard
NUM_LAYER = args.n_layer
LEARNING_RATE = args.lr
NODE_DIM = args.node_dim
TIME_DIM = args.time_dim
# Model initialize
os.environ["CUDA_DEVICE_ORDER"] = "PCI_BUS_ID"
device = torch.device('cuda:{}'.format(GPU))
import socket
DEVICE_STR = f'{socket.gethostname()}-{device.index}'
PARAM_STR = f'{NUM_LAYER}-{NUM_HEADS}-{NUM_NEIGHBORS}-{HARD}-{DROP_OUT}-{BATCH_SIZE}'
GUMBEL_PATH = f'./sample_cache/{TASK}-False-{args.data}-gumbel-{HARD}.pth'
MODEL_SAVE_PATH = f'./saved_models/{args.prefix}-{TASK}-{FREEZE}-{PARAM_STR}-{args.agg_method}-{args.attn_mode}-{args.data}.pth'
LR_SAVE_PATH = f'./saved_models/LR-{DATA}-{NODE_LAYER}-{BALANCE}-{NEG_RATIO}-{VAL_TIME}-node-class.pth'
def get_checkpoint_path(epoch):
return f'./ckpt/LR-{DATA}-{DEVICE_STR}-{NODE_LAYER}-{BALANCE}-{NEG_RATIO}-{VAL_TIME}-{epoch}-node-class.pth'
# set up logger
if True:
logger = set_logger()
logger.info(args)
# Load data and train val test split
if True:
edges, nodes = load_data(DATA, "format")
n_nodes = len(nodes)
# padding node is 0, so add 1 here.
id2idx = {row.node_id: row.id_map + 1 for row in nodes.itertuples()}
edges["from_node_id"] = edges["from_node_id"].map(id2idx)
edges["to_node_id"] = edges["to_node_id"].map(id2idx)
g_df = edges[["from_node_id", "to_node_id", "timestamp",
"state_label"]].copy()
g_df["idx"] = np.arange(1, len(edges) + 1)
g_df.columns = ["u", "i", "ts", "label", "idx"]
val_time, test_time = list(np.quantile(g_df.ts, [0.70, 0.85]))
if len(edges.columns) > 4:
e_feat = edges.iloc[:, 4:].to_numpy()
padding = np.zeros((1, e_feat.shape[1]))
e_feat = np.concatenate((padding, e_feat))
else:
e_feat = np.zeros((len(g_df) + 1, NODE_DIM))
if FREEZE:
n_feat = np.zeros((n_nodes + 1, NODE_DIM))
else:
bound = np.sqrt(6 / (2 * NODE_DIM))
n_feat = np.random.uniform(-bound, bound, (n_nodes + 1, NODE_DIM))
src_l = g_df.u.values
dst_l = g_df.i.values
e_idx_l = g_df.idx.values
ts_l = g_df.ts.values
label_l = g_df.label.values
max_src_index = src_l.max()
max_idx = max(src_l.max(), dst_l.max())
# set train, validation, test datasets
if True:
val_time, test_time = list(np.quantile(g_df.ts, [0.70, 0.85]))
# select validation and test dataset
valid_val_flag = (ts_l <= test_time) * (ts_l > val_time)
valid_test_flag = ts_l > test_time
val_src_l = src_l[valid_val_flag]
val_dst_l = dst_l[valid_val_flag]
val_ts_l = ts_l[valid_val_flag]
val_e_idx_l = e_idx_l[valid_val_flag]
val_label_l = label_l[valid_val_flag]
test_src_l = src_l[valid_test_flag]
test_dst_l = dst_l[valid_test_flag]
test_ts_l = ts_l[valid_test_flag]
test_e_idx_l = e_idx_l[valid_test_flag]
test_label_l = label_l[valid_test_flag]
val_time = np.quantile(g_df.ts, VAL_TIME)
valid_train_flag = (ts_l < val_time)
train_src_l = src_l[valid_train_flag]
train_dst_l = dst_l[valid_train_flag]
train_ts_l = ts_l[valid_train_flag]
train_e_idx_l = e_idx_l[valid_train_flag]
train_label_l = label_l[valid_train_flag]
# Initialize the data structure for graph and edge sampling
# build the graph for fast query
adj_list = [[] for _ in range(max_idx + 1)]
for src, dst, eidx, ts in zip(train_src_l, train_dst_l, train_e_idx_l,
train_ts_l):
adj_list[src].append((dst, eidx, ts))
adj_list[dst].append((src, eidx, ts))
train_ngh_finder = NeighborFinder(adj_list, uniform=True)
# # full graph with all the data for the test and validation purpose
full_adj_list = [[] for _ in range(max_idx + 1)]
for src, dst, eidx, ts in zip(src_l, dst_l, e_idx_l, ts_l):
full_adj_list[src].append((dst, eidx, ts))
full_adj_list[dst].append((src, eidx, ts))
full_ngh_finder = NeighborFinder(full_adj_list, uniform=True)
gumbel_gnn = GumbelGAN(full_ngh_finder,
n_feat,
e_feat,
n_feat_freeze=FREEZE,
num_layers=1,
use_time=USE_TIME,
agg_method=AGG_METHOD,
attn_mode=ATTN_MODE,
seq_len=SEQ_LEN,
n_head=1,
drop_out=DROP_OUT,
node_dim=NODE_DIM,
time_dim=TIME_DIM,
hard=HARD,
num_neighbors=NUM_NEIGHBORS)
gumbel_gnn.load_state_dict(torch.load(GUMBEL_PATH, map_location=device))
gumbel_gnn = gumbel_gnn.to(device)
gumbel_gnn.eval()
bi_finder = BiSamplingNFinder(full_adj_list,
DATA,
gumbel_gnn,
NUM_NEIGHBORS,
mode=TASK,
hard=HARD,
freeze=GUMBEL_FREEZE)
dps = SamplingFusion(bi_finder,
n_feat,
e_feat,
k_samplers=2,
n_feat_freeze=FREEZE,
num_layers=NUM_LAYER,
use_time=USE_TIME,
agg_method=AGG_METHOD,
attn_mode=ATTN_MODE,
seq_len=SEQ_LEN,
n_head=NUM_HEADS,
drop_out=DROP_OUT,
node_dim=NODE_DIM,
time_dim=TIME_DIM)
optimizer = torch.optim.Adam(dps.parameters(), lr=LEARNING_RATE)
criterion = torch.nn.BCELoss()
dps = dps.to(device)
num_instance = len(train_src_l)
num_batch = math.ceil(num_instance / BATCH_SIZE)
logger.debug('num of training instances: {}'.format(num_instance))
logger.debug('num of batches per epoch: {}'.format(num_batch))
logger.info('loading saved DPS model')
dps.load_state_dict(torch.load(MODEL_SAVE_PATH, map_location=device))
dps.eval()
logger.info('DPS models loaded')
logger.info('Start training node classification task')
lr_input = n_feat.shape[1] * (2 if BINARY else 1)
lr_model = LR(lr_input)
lr_optimizer = torch.optim.Adam(lr_model.parameters(), lr=args.lr)
lr_model = lr_model.to(device)
# dps.ngh_finder = full_ngh_finder
idx_list = np.arange(len(train_src_l))
lr_criterion = torch.nn.BCELoss()
lr_criterion_eval = torch.nn.BCELoss()
def eval_epoch(src_l,
dst_l,
ts_l,
label_l,
batch_size,
lr_model,
dps,
num_layer=NODE_LAYER):
pred_prob = np.zeros(len(src_l))
loss = 0
num_instance = len(src_l)
num_batch = math.ceil(num_instance / batch_size)
with torch.no_grad():
lr_model.eval()
dps.eval()
for k in range(num_batch):
s_idx = k * batch_size
e_idx = min(num_instance - 1, s_idx + batch_size)
src_l_cut = src_l[s_idx:e_idx]
dst_l_cut = dst_l[s_idx:e_idx]
ts_l_cut = ts_l[s_idx:e_idx]
label_l_cut = label_l[s_idx:e_idx]
size = len(src_l_cut)
src_embed, _ = dps.tem_conv(src_l_cut, ts_l_cut, num_layer)
if BINARY:
dst_embed, _ = dps.tem_conv(dst_l_cut, ts_l_cut, NODE_LAYER)
src_embed = torch.cat([src_embed, dst_embed], dim=-1)
src_label = torch.from_numpy(label_l_cut).float().to(device)
lr_prob = lr_model(src_embed).sigmoid()
loss += lr_criterion_eval(lr_prob, src_label).item()
pred_prob[s_idx:e_idx] = lr_prob.cpu().numpy()
auc_roc = roc_auc_score(label_l, pred_prob)
return auc_roc, loss / num_instance
pos_src = train_src_l[train_label_l]
pos_dst = train_dst_l[train_label_l]
pos_ts = train_ts_l[train_label_l]
pos_label = train_label_l[train_label_l]
def sample_positive(src_l_cut,
dst_l_cut,
ts_l_cut,
label_l_cut,
neg_ratio=NEG_RATIO):
size = len(label_l_cut)
pos_cnt = size // neg_ratio
max_idx = (pos_ts < ts_l_cut.max()).sum()
idx = np.random.randint(0, max_idx, pos_cnt)
sample_pos_src = pos_src[idx]
sample_pos_dst = pos_dst[idx]
sample_pos_ts = pos_ts[idx]
sample_pos_label = pos_label[idx]
new_src_cut = np.hstack([src_l_cut, sample_pos_src])
new_dst_cut = np.hstack([dst_l_cut, sample_pos_dst])
new_ts_cut = np.hstack([ts_l_cut, sample_pos_ts])
new_label_cut = np.hstack([label_l_cut, sample_pos_label])
return new_src_cut, new_dst_cut, new_ts_cut, new_label_cut
class EmbedCache(object):
PRECISION = 5
def __init__(self) -> None:
super().__init__()
self.cache = {}
def update_cache(self, src_l_cut, ts_l_cut, src_emb):
for i, (node, ts) in enumerate(zip(src_l_cut, ts_l_cut)):
key = (node, ts)
if key not in self.cache:
self.cache[key] = src_emb[i]
def check_cache(self, src_l_cut, ts_l_cut):
ans = []
for i, (node, ts) in enumerate(zip(src_l_cut, ts_l_cut)):
key = (node, ts)
if key not in self.cache:
return None
ans.append(self.cache.get(key))
return torch.stack(ans)
embed_cache = EmbedCache()
early_stopper = EarlyStopMonitor(max_round=10)
epoch_bar = trange(NUM_EPOCH)
for epoch in epoch_bar:
lr_pred_prob = np.zeros(len(train_src_l))
np.random.shuffle(idx_list)
dps = dps.eval()
lr_model = lr_model.train()
#num_batch
for k in trange(num_batch):
s_idx = k * BATCH_SIZE
e_idx = min(num_instance - 1, s_idx + BATCH_SIZE)
src_l_cut = train_src_l[s_idx:e_idx]
dst_l_cut = train_dst_l[s_idx:e_idx]
ts_l_cut = train_ts_l[s_idx:e_idx]
label_l_cut = train_label_l[s_idx:e_idx]
if BALANCE:
src_l_cut, dst_l_cut, ts_l_cut, label_l_cut = sample_positive(
src_l_cut, dst_l_cut, ts_l_cut, label_l_cut, NEG_RATIO)
size = len(src_l_cut)
lr_optimizer.zero_grad()
with torch.no_grad():
if epoch == 0:
src_embed, _ = dps.tem_conv(src_l_cut, ts_l_cut, NODE_LAYER)
if BINARY:
dst_embed, _ = dps.tem_conv(dst_l_cut, ts_l_cut,
NODE_LAYER)
src_embed = torch.cat([src_embed, dst_embed], dim=-1)
embed_cache.update_cache(src_l_cut, ts_l_cut, src_embed)
else:
src_embed = embed_cache.check_cache(src_l_cut, ts_l_cut)
src_label = torch.from_numpy(label_l_cut).float().to(device)
lr_prob = lr_model(src_embed).sigmoid()
lr_loss = lr_criterion(lr_prob, src_label)
lr_loss.backward()
lr_optimizer.step()
val_auc, val_loss = eval_epoch(val_src_l, val_dst_l, val_ts_l, val_label_l,
BATCH_SIZE, lr_model, dps)
epoch_bar.update()
epoch_bar.set_postfix(val_auc=val_auc,
balance=BALANCE,
neg_ratio=NEG_RATIO)
if early_stopper.early_stop_check(val_auc):
break
else:
torch.save(lr_model.state_dict(), get_checkpoint_path(epoch))
logger.info('No improvment over {} epochs, stop training'.format(
early_stopper.max_round))
logger.info(f'Loading the best model at epoch {early_stopper.best_epoch}')
best_model_path = get_checkpoint_path(early_stopper.best_epoch)
lr_model.load_state_dict(torch.load(best_model_path))
logger.info(
f'Loaded the best model at epoch {early_stopper.best_epoch} for inference')
lr_model.eval()
torch.save(lr_model.state_dict(), LR_SAVE_PATH)
val_auc, val_loss = eval_epoch(val_src_l, val_dst_l, val_ts_l, val_label_l,
BATCH_SIZE, lr_model, dps)
test_auc, test_loss = eval_epoch(test_src_l, test_dst_l, test_ts_l,
test_label_l, BATCH_SIZE, lr_model, dps)
torch.save(lr_model.state_dict(),
'./saved_models/edge_{}_wkiki_node_class.pth'.format(DATA))
logger.info(f'test auc: {test_auc}')
res_path = "nc-results/{}-Fusion.csv".format(DATA)
headers = ["method", "dataset", "valid_auc", "auc", "params"]
if not os.path.exists(res_path):
f = open(res_path, 'w+')
f.write(",".join(headers) + "\r\n")
f.close()
os.chmod(res_path, 0o777)
config = f"gumbel_freeze={GUMBEL_FREEZE},freeze={FREEZE},binary={BINARY},hard={HARD},node_layer={NODE_LAYER},balance={BALANCE},neg_ratio={NEG_RATIO},val_time={VAL_TIME:.2f}"
with open(res_path, "a") as file:
file.write("Fusion,{},{:.4f},{:.4f},\"{}\"".format(DATA, val_auc, test_auc,
config))
file.write("\n")