-
Notifications
You must be signed in to change notification settings - Fork 154
/
model.py
163 lines (132 loc) · 5.59 KB
/
model.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
import torch
import __init__
from gcn_lib.sparse.torch_vertex import GENConv
from gcn_lib.sparse.torch_nn import norm_layer
import torch.nn.functional as F
from torch_geometric.nn import global_add_pool, global_mean_pool, global_max_pool
import logging
class DeeperGCN(torch.nn.Module):
def __init__(self, args):
super(DeeperGCN, self).__init__()
self.num_layers = args.num_layers
self.dropout = args.dropout
self.block = args.block
hidden_channels = args.hidden_channels
num_tasks = args.num_tasks
conv = args.conv
aggr = args.gcn_aggr
t = args.t
self.learn_t = args.learn_t
p = args.p
self.learn_p = args.learn_p
self.msg_norm = args.msg_norm
learn_msg_scale = args.learn_msg_scale
conv_encode_edge = args.conv_encode_edge
norm = args.norm
mlp_layers = args.mlp_layers
graph_pooling = args.graph_pooling
print('The number of layers {}'.format(self.num_layers),
'Aggr aggregation method {}'.format(aggr),
'block: {}'.format(self.block))
if self.block == 'res+':
print('LN/BN->ReLU->GraphConv->Res')
elif self.block == 'res':
print('GraphConv->LN/BN->ReLU->Res')
elif self.block == 'dense':
raise NotImplementedError('To be implemented')
elif self.block == "plain":
print('GraphConv->LN/BN->ReLU')
else:
raise Exception('Unknown block Type')
self.gcns = torch.nn.ModuleList()
self.norms = torch.nn.ModuleList()
for layer in range(self.num_layers):
if conv == 'gen':
gcn = GENConv(hidden_channels, hidden_channels,
aggr=aggr,
t=t, learn_t=self.learn_t,
p=p, learn_p=self.learn_p,
msg_norm=self.msg_norm, learn_msg_scale=learn_msg_scale,
encode_edge=conv_encode_edge, edge_feat_dim=hidden_channels,
norm=norm, mlp_layers=mlp_layers)
else:
raise Exception('Unknown Conv Type')
self.gcns.append(gcn)
self.norms.append(norm_layer(norm, hidden_channels))
self.node_features_encoder = torch.nn.Linear(7, hidden_channels)
self.edge_encoder = torch.nn.Linear(7, hidden_channels)
if graph_pooling == "sum":
self.pool = global_add_pool
elif graph_pooling == "mean":
self.pool = global_mean_pool
elif graph_pooling == "max":
self.pool = global_max_pool
else:
raise Exception('Unknown Pool Type')
self.graph_pred_linear = torch.nn.Linear(hidden_channels, num_tasks)
def forward(self, input_batch):
x = input_batch.x
edge_index = input_batch.edge_index
edge_attr = input_batch.edge_attr
batch = input_batch.batch
h = self.node_features_encoder(x)
edge_emb = self.edge_encoder(edge_attr)
if self.block == 'res+':
h = self.gcns[0](h, edge_index, edge_emb)
for layer in range(1, self.num_layers):
h1 = self.norms[layer - 1](h)
h2 = F.relu(h1)
h2 = F.dropout(h2, p=self.dropout, training=self.training)
h = self.gcns[layer](h2, edge_index, edge_emb) + h
h = self.norms[self.num_layers - 1](h)
h = F.dropout(h, p=self.dropout, training=self.training)
elif self.block == 'res':
h = F.relu(self.norms[0](self.gcns[0](h, edge_index, edge_emb)))
h = F.dropout(h, p=self.dropout, training=self.training)
for layer in range(1, self.num_layers):
h1 = self.gcns[layer](h, edge_index, edge_emb)
h2 = self.norms[layer](h1)
h = F.relu(h2) + h
h = F.dropout(h, p=self.dropout, training=self.training)
elif self.block == 'dense':
raise NotImplementedError('To be implemented')
elif self.block == 'plain':
h = F.relu(self.norms[0](self.gcns[0](h, edge_index, edge_emb)))
h = F.dropout(h, p=self.dropout, training=self.training)
for layer in range(1, self.num_layers):
h1 = self.gcns[layer](h, edge_index, edge_emb)
h2 = self.norms[layer](h1)
if layer != (self.num_layers - 1):
h = F.relu(h2)
else:
h = h2
h = F.dropout(h, p=self.dropout, training=self.training)
else:
raise Exception('Unknown block Type')
h_graph = self.pool(h, batch)
return self.graph_pred_linear(h_graph)
def print_params(self, epoch=None, final=False):
if self.learn_t:
ts = []
for gcn in self.gcns:
ts.append(gcn.t.item())
if final:
print('Final t {}'.format(ts))
else:
logging.info('Epoch {}, t {}'.format(epoch, ts))
if self.learn_p:
ps = []
for gcn in self.gcns:
ps.append(gcn.p.item())
if final:
print('Final p {}'.format(ps))
else:
logging.info('Epoch {}, p {}'.format(epoch, ps))
if self.msg_norm:
ss = []
for gcn in self.gcns:
ss.append(gcn.msg_norm.msg_scale.item())
if final:
print('Final s {}'.format(ss))
else:
logging.info('Epoch {}, s {}'.format(epoch, ss))