forked from BUPT-GAMMA/OpenHGNN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.py
438 lines (373 loc) · 13.3 KB
/
utils.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
427
428
429
430
431
432
433
434
435
436
437
438
import dgl
import copy
from dgl import backend as F
import torch as th
from scipy.sparse import coo_matrix
import numpy as np
import random
from . import load_HIN, load_KG, load_OGB
from .best_config import BEST_CONFIGS
def sum_up_params(model):
""" Count the model parameters """
n = []
n.append(model.u_embeddings.weight.cpu().data.numel() * 2)
n.append(model.lookup_table.cpu().numel())
n.append(model.index_emb_posu.cpu().numel() * 2)
n.append(model.grad_u.cpu().numel() * 2)
try:
n.append(model.index_emb_negu.cpu().numel() * 2)
except:
pass
try:
n.append(model.state_sum_u.cpu().numel() * 2)
except:
pass
try:
n.append(model.grad_avg.cpu().numel())
except:
pass
try:
n.append(model.context_weight.cpu().numel())
except:
pass
print("#params " + str(sum(n)))
exit()
def add_reverse_edges(hg, copy_ndata=True, copy_edata=True, ignore_one_type=True):
# get node cnt for each ntype
canonical_etypes = hg.canonical_etypes
num_nodes_dict = {ntype: hg.number_of_nodes(ntype) for ntype in hg.ntypes}
edge_dict = {}
for etype in canonical_etypes:
u, v = hg.edges(form='uv', order='eid', etype=etype)
edge_dict[etype] = (u, v)
edge_dict[(etype[2], etype[1] + '-rev', etype[0])] = (v, u)
new_hg = dgl.heterograph(edge_dict, num_nodes_dict=num_nodes_dict)
# handle features
if copy_ndata:
node_frames = dgl.utils.extract_node_subframes(hg, None)
dgl.utils.set_new_frames(new_hg, node_frames=node_frames)
if copy_edata:
for etype in canonical_etypes:
edge_frame = hg.edges[etype].data
for data_name, value in edge_frame.items():
new_hg.edges[etype].data[data_name] = value
return new_hg
def set_best_config(args):
configs = BEST_CONFIGS.get(args.task)
if configs is None:
print('The task: {} do not have a best_config!'.format(args.task))
return args
if args.model not in configs:
print('The model: {} is not in the best config.'.format(args.model))
return args
configs = configs[args.model]
for key, value in configs["general"].items():
args.__setattr__(key, value)
if args.dataset not in configs:
print('The dataset: {} is not in the best config of model: {}.'.format(args.dataset, args.model))
return args
for key, value in configs[args.dataset].items():
args.__setattr__(key, value)
print('Load the best config of model: {} for dataset: {}.'.format(args.model, args.dataset))
return args
class EarlyStopping(object):
def __init__(self, patience=10, save_path=None):
self.patience = patience
self.counter = 0
self.best_score = None
self.best_loss = None
self.early_stop = False
if save_path is None:
self.best_model = None
self.save_path = save_path
def step(self, loss, score, model):
if isinstance(score ,tuple):
score = score[0]
if self.best_loss is None:
self.best_score = score
self.best_loss = loss
self.save_model(model)
elif (loss > self.best_loss) and (score < self.best_score):
self.counter += 1
#print(f'EarlyStopping counter: {self.counter} out of {self.patience}')
if self.counter >= self.patience:
self.early_stop = True
else:
if (score >= self.best_score) and (loss <= self.best_loss):
self.save_model(model)
self.best_loss = np.min((loss, self.best_loss))
self.best_score = np.max((score, self.best_score))
self.counter = 0
return self.early_stop
def step_score(self, score, model):
if self.best_score is None:
self.best_score = score
self.save_model(model)
elif score < self.best_score:
self.counter += 1
#print(f'EarlyStopping counter: {self.counter} out of {self.patience}')
if self.counter >= self.patience:
self.early_stop = True
else:
if score >= self.best_score:
self.save_model(model)
self.best_score = np.max((score, self.best_score))
self.counter = 0
return self.early_stop
def loss_step(self, loss, model):
"""
Parameters
----------
loss Float or torch.Tensor
model torch.nn.Module
Returns
-------
"""
if isinstance(loss, th.Tensor):
loss = loss.item()
if self.best_loss is None:
self.best_loss = loss
self.save_model(model)
elif loss >= self.best_loss:
self.counter += 1
# print(f'EarlyStopping counter: {self.counter} out of {self.patience}')
if self.counter >= self.patience:
self.early_stop = True
else:
if loss < self.best_loss:
self.save_model(model)
self.best_loss = np.min((loss, self.best_loss))
self.counter = 0
return self.early_stop
def save_model(self, model):
if self.save_path is None:
self.best_model = copy.deepcopy(model)
else:
model.eval()
th.save(model.state_dict(), self.save_path)
def load_model(self, model):
if self.save_path is None:
return self.best_model
else:
model.load_state_dict(th.load(self.save_path))
def get_nodes_dict(hg):
n_dict = {}
for n in hg.ntypes:
n_dict[n] = hg.num_nodes(n)
return n_dict
def extract_embed(node_embed, input_nodes):
emb = {}
for ntype, nid in input_nodes.items():
nid = input_nodes[ntype]
emb[ntype] = node_embed[ntype][nid]
return emb
def build_dataset(model_name, dataset_name):
# load the graph(HIN or KG)
if dataset_name in ['mag']:
dataset = load_OGB(dataset_name)
return dataset
if model_name in ['GTN', 'NSHE', 'HetGNN']:
g, category, num_classes = load_HIN(dataset_name)
elif model_name in ['RSHN', 'RGCN', 'CompGCN']:
g, category, num_classes = load_KG(dataset_name)
return g, category, num_classes
def set_random_seed(seed):
random.seed(seed)
np.random.seed(seed)
th.manual_seed(seed)
th.cuda.manual_seed(seed)
dgl.seed(seed)
def com_mult(a, b):
r1, i1 = a[..., 0], a[..., 1]
r2, i2 = b[..., 0], b[..., 1]
return th.stack([r1 * r2 - i1 * i2, r1 * i2 + i1 * r2], dim=-1)
def conj(a):
a[..., 1] = -a[..., 1]
return a
def ccorr(a, b):
"""
Compute circular correlation of two tensors.
Parameters
----------
a: Tensor, 1D or 2D
b: Tensor, 1D or 2D
Notes
-----
Input a and b should have the same dimensions. And this operation supports broadcasting.
Returns
-------
Tensor, having the same dimension as the input a.
"""
try:
from torch import irfft
from torch import rfft
except ImportError:
from torch.fft import irfft2
from torch.fft import rfft2
def rfft(x, d):
t = rfft2(x, dim=(-d))
return th.stack((t.real, t.imag), -1)
def irfft(x, d, signal_sizes):
return irfft2(th.complex(x[:, :, 0], x[:, :, 1]), s=signal_sizes, dim=(-d))
return irfft(com_mult(conj(rfft(a, 1)), rfft(b, 1)), 1, signal_sizes=(a.shape[-1],))
def transform_relation_graph_list(hg, category, identity=True):
r"""
extract subgraph :math:`G_i` from :math:`G` in which
only edges whose type :math:`R_i` belongs to :math:`\mathcal{R}`
Parameters
----------
hg : dgl.heterograph
Input heterogeneous graph
category : string
Type of predicted nodes.
identity : bool
If True, the identity matrix will be added to relation matrix set.
"""
# get target category id
for i, ntype in enumerate(hg.ntypes):
if ntype == category:
category_id = i
g = dgl.to_homogeneous(hg, ndata='h')
# find out the target node ids in g
loc = (g.ndata[dgl.NTYPE] == category_id)
category_idx = th.arange(g.num_nodes())[loc]
edges = g.edges()
etype = g.edata[dgl.ETYPE]
ctx = g.device
#g.edata['w'] = th.ones(g.num_edges(), device=ctx)
num_edge_type = th.max(etype).item()
# norm = EdgeWeightNorm(norm='right')
# edata = norm(g.add_self_loop(), th.ones(g.num_edges() + g.num_nodes(), device=ctx))
graph_list = []
for i in range(num_edge_type + 1):
e_ids = th.nonzero(etype == i).squeeze(-1)
sg = dgl.graph((edges[0][e_ids], edges[1][e_ids]), num_nodes=g.num_nodes())
# sg.edata['w'] = edata[e_ids]
sg.edata['w'] = th.ones(sg.num_edges(), device=ctx)
graph_list.append(sg)
if identity == True:
x = th.arange(0, g.num_nodes(), device=ctx)
sg = dgl.graph((x, x))
# sg.edata['w'] = edata[g.num_edges():]
sg.edata['w'] = th.ones(g.num_nodes(), device=ctx)
graph_list.append(sg)
return graph_list, g.ndata['h'], category_idx
def extract_mtx_with_id_edge(g):
# input a homogeneous graph
# return tensor with shape of [2,num_edges]
edges = g.edges()
edata = g.edata['_TYPE']
num_edge_type = th.max(edata).item()
ctx = F.context(edges[0])
dtype = F.dtype(edges[0])
A = []
num_nodes = g.num_nodes()
for i in range(num_edge_type + 1):
index = th.nonzero(edata == i).squeeze()
e_0 = edges[0][index].to('cpu').numpy()
e_1 = edges[1][index].to('cpu').numpy()
values = np.ones(e_0.shape[0])
m = coo_matrix((values, (e_0, e_1)), shape=(num_nodes, num_nodes))
m = th.from_numpy(m.todense()).type(th.FloatTensor).unsqueeze(0)
if 0 == i:
A = m
else:
A = th.cat([A, m], dim=0)
m = th.eye(num_nodes).unsqueeze(0)
A = th.cat([A, m], dim=0)
return A.to(ctx)
def h2dict(h, hdict):
pre = 0
for i, value in hdict.items():
hdict[i] = h[pre:value.shape[0] + pre]
pre += value.shape[0]
return hdict
def print_dict(d, end_string='\n\n'):
for key in d.keys():
if isinstance(d[key], dict):
print('\n', end='')
print_dict(d[key], end_string='')
elif isinstance(d[key], int):
print('{}: {:04d}'.format(key, d[key]), end=', ')
elif isinstance(d[key], float):
print('{}: {:.4f}'.format(key, d[key]), end=', ')
else:
print('{}: {}'.format(key, d[key]), end=', ')
print(end_string, end='')
def extract_metapaths(category, canonical_etypes, self_loop=False):
meta_paths_dict = {}
for etype in canonical_etypes:
if etype[0] in category:
for dst_e in canonical_etypes:
if etype[0] == dst_e[2] and etype[2] == dst_e[0]:
if self_loop:
mp_name = 'mp' + str(len(meta_paths_dict))
meta_paths_dict[mp_name] = [etype, dst_e]
else:
if etype[0] != etype[2]:
mp_name = 'mp' + str(len(meta_paths_dict))
meta_paths_dict[mp_name] = [etype, dst_e]
return meta_paths_dict
# for etype in self.model.hg.etypes:
# g = self.model.hg[etype]
# for etype in ['paper-ref-paper','paper-cite-paper']:
# g = self.hg[etype]
# r = []
# for i in self.train_idx:
# neigh = g.predecessors(i)
# cen_label = self.labels[i]
# neigh_label = self.labels[neigh]
# if len(neigh) == 0:
# pass
# else:
# r.append((cen_label == neigh_label).sum() / len(neigh))
# for i in self.valid_idx:
# neigh = g.predecessors(i)
# cen_label = self.labels[i]
# neigh_label = self.labels[neigh]
# if len(neigh) == 0:
# pass
# else:
# r.append((cen_label == neigh_label).sum() / len(neigh))
# he = torch.stack(r).mean()
# print(etype+ str(he))
def to_hetero_feat(h, type, name):
"""Feature convert API.
It uses information about the type of the specified node
to convert features ``h`` in homogeneous graph into a heteorgeneous
feature dictionay ``h_dict``.
Parameters
----------
h: Tensor
Input features of homogeneous graph
type: Tensor
Represent the type of each node or edge with a number.
It should correspond to the parameter ``name``.
name: list
The node or edge types list.
Return
------
h_dict: dict
output feature dictionary of heterogeneous graph
Example
-------
>>> h = torch.tensor([[1, 2, 3],
[1, 1, 1],
[0, 2, 1],
[1, 3, 3],
[2, 1, 1]])
>>> print(h.shape)
torch.Size([5, 3])
>>> type = torch.tensor([0, 1, 0, 0, 1])
>>> name = ['author', 'paper']
>>> h_dict = to_hetero_feat(h, type, name)
>>> print(h_dict)
{'author': tensor([[1, 2, 3],
[0, 2, 1],
[1, 3, 3]]), 'paper': tensor([[1, 1, 1],
[2, 1, 1]])}
"""
h_dict = {}
for index, ntype in enumerate(name):
h_dict[ntype] = h[th.where(type == index)]
return h_dict