forked from muhanzhang/pytorch_DGCNN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
241 lines (204 loc) · 9.33 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
import sys
import os
import torch
import random
import numpy as np
from tqdm import tqdm
from torch.autograd import Variable
from torch.nn.parameter import Parameter
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
import math
import pdb
from DGCNN_embedding import DGCNN
from mlp_dropout import MLPClassifier, MLPRegression
from sklearn import metrics
from util import cmd_args, load_data
class Classifier(nn.Module):
def __init__(self, regression=False):
super(Classifier, self).__init__()
self.regression = regression
if cmd_args.gm == 'DGCNN':
model = DGCNN
else:
print('unknown gm %s' % cmd_args.gm)
sys.exit()
if cmd_args.gm == 'DGCNN':
self.gnn = model(latent_dim=cmd_args.latent_dim,
output_dim=cmd_args.out_dim,
num_node_feats=cmd_args.feat_dim+cmd_args.attr_dim,
num_edge_feats=cmd_args.edge_feat_dim,
k=cmd_args.sortpooling_k,
conv1d_activation=cmd_args.conv1d_activation)
out_dim = cmd_args.out_dim
if out_dim == 0:
if cmd_args.gm == 'DGCNN':
out_dim = self.gnn.dense_dim
else:
out_dim = cmd_args.latent_dim
self.mlp = MLPClassifier(input_size=out_dim, hidden_size=cmd_args.hidden, num_class=cmd_args.num_class, with_dropout=cmd_args.dropout)
if regression:
self.mlp = MLPRegression(input_size=out_dim, hidden_size=cmd_args.hidden, with_dropout=cmd_args.dropout)
def PrepareFeatureLabel(self, batch_graph):
if self.regression:
labels = torch.FloatTensor(len(batch_graph))
else:
labels = torch.LongTensor(len(batch_graph))
n_nodes = 0
if batch_graph[0].node_tags is not None:
node_tag_flag = True
concat_tag = []
else:
node_tag_flag = False
if batch_graph[0].node_features is not None:
node_feat_flag = True
concat_feat = []
else:
node_feat_flag = False
if cmd_args.edge_feat_dim > 0:
edge_feat_flag = True
concat_edge_feat = []
else:
edge_feat_flag = False
for i in range(len(batch_graph)):
labels[i] = batch_graph[i].label
n_nodes += batch_graph[i].num_nodes
if node_tag_flag == True:
concat_tag += batch_graph[i].node_tags
if node_feat_flag == True:
tmp = torch.from_numpy(batch_graph[i].node_features).type('torch.FloatTensor')
concat_feat.append(tmp)
if edge_feat_flag == True:
if batch_graph[i].edge_features is not None: # in case no edge in graph[i]
tmp = torch.from_numpy(batch_graph[i].edge_features).type('torch.FloatTensor')
concat_edge_feat.append(tmp)
if node_tag_flag == True:
concat_tag = torch.LongTensor(concat_tag).view(-1, 1)
node_tag = torch.zeros(n_nodes, cmd_args.feat_dim)
node_tag.scatter_(1, concat_tag, 1)
if node_feat_flag == True:
node_feat = torch.cat(concat_feat, 0)
if node_feat_flag and node_tag_flag:
# concatenate one-hot embedding of node tags (node labels) with continuous node features
node_feat = torch.cat([node_tag.type_as(node_feat), node_feat], 1)
elif node_feat_flag == False and node_tag_flag == True:
node_feat = node_tag
elif node_feat_flag == True and node_tag_flag == False:
pass
else:
node_feat = torch.ones(n_nodes, 1) # use all-one vector as node features
if edge_feat_flag == True:
edge_feat = torch.cat(concat_edge_feat, 0)
if cmd_args.mode == 'gpu':
node_feat = node_feat.cuda()
labels = labels.cuda()
if edge_feat_flag == True:
edge_feat = edge_feat.cuda()
if edge_feat_flag == True:
return node_feat, edge_feat, labels
return node_feat, labels
def forward(self, batch_graph):
feature_label = self.PrepareFeatureLabel(batch_graph)
if len(feature_label) == 2:
node_feat, labels = feature_label
edge_feat = None
elif len(feature_label) == 3:
node_feat, edge_feat, labels = feature_label
embed = self.gnn(batch_graph, node_feat, edge_feat)
return self.mlp(embed, labels)
def output_features(self, batch_graph):
feature_label = self.PrepareFeatureLabel(batch_graph)
if len(feature_label) == 2:
node_feat, labels = feature_label
edge_feat = None
elif len(feature_label) == 3:
node_feat, edge_feat, labels = feature_label
embed = self.gnn(batch_graph, node_feat, edge_feat)
return embed, labels
def loop_dataset(g_list, classifier, sample_idxes, optimizer=None, bsize=cmd_args.batch_size):
total_loss = []
total_iters = (len(sample_idxes) + (bsize - 1) * (optimizer is None)) // bsize
pbar = tqdm(range(total_iters), unit='batch')
all_targets = []
all_scores = []
n_samples = 0
for pos in pbar:
selected_idx = sample_idxes[pos * bsize : (pos + 1) * bsize]
batch_graph = [g_list[idx] for idx in selected_idx]
targets = [g_list[idx].label for idx in selected_idx]
all_targets += targets
if classifier.regression:
pred, mae, loss = classifier(batch_graph)
all_scores.append(pred.cpu().detach()) # for binary classification
else:
logits, loss, acc = classifier(batch_graph)
all_scores.append(logits[:, 1].cpu().detach()) # for binary classification
if optimizer is not None:
optimizer.zero_grad()
loss.backward()
optimizer.step()
loss = loss.data.cpu().detach().numpy()
if classifier.regression:
pbar.set_description('MSE_loss: %0.5f MAE_loss: %0.5f' % (loss, mae) )
total_loss.append( np.array([loss, mae]) * len(selected_idx))
else:
pbar.set_description('loss: %0.5f acc: %0.5f' % (loss, acc) )
total_loss.append( np.array([loss, acc]) * len(selected_idx))
n_samples += len(selected_idx)
if optimizer is None:
assert n_samples == len(sample_idxes)
total_loss = np.array(total_loss)
avg_loss = np.sum(total_loss, 0) / n_samples
all_scores = torch.cat(all_scores).cpu().numpy()
# np.savetxt('test_scores.txt', all_scores) # output test predictions
if not classifier.regression and cmd_args.printAUC:
all_targets = np.array(all_targets)
fpr, tpr, _ = metrics.roc_curve(all_targets, all_scores, pos_label=1)
auc = metrics.auc(fpr, tpr)
avg_loss = np.concatenate((avg_loss, [auc]))
else:
avg_loss = np.concatenate((avg_loss, [0.0]))
return avg_loss
if __name__ == '__main__':
print(cmd_args)
random.seed(cmd_args.seed)
np.random.seed(cmd_args.seed)
torch.manual_seed(cmd_args.seed)
train_graphs, test_graphs = load_data()
print('# train: %d, # test: %d' % (len(train_graphs), len(test_graphs)))
if cmd_args.sortpooling_k <= 1:
num_nodes_list = sorted([g.num_nodes for g in train_graphs + test_graphs])
cmd_args.sortpooling_k = num_nodes_list[int(math.ceil(cmd_args.sortpooling_k * len(num_nodes_list))) - 1]
cmd_args.sortpooling_k = max(10, cmd_args.sortpooling_k)
print('k used in SortPooling is: ' + str(cmd_args.sortpooling_k))
classifier = Classifier()
if cmd_args.mode == 'gpu':
classifier = classifier.cuda()
optimizer = optim.Adam(classifier.parameters(), lr=cmd_args.learning_rate)
train_idxes = list(range(len(train_graphs)))
best_loss = None
for epoch in range(cmd_args.num_epochs):
random.shuffle(train_idxes)
classifier.train()
avg_loss = loop_dataset(train_graphs, classifier, train_idxes, optimizer=optimizer)
if not cmd_args.printAUC:
avg_loss[2] = 0.0
print('\033[92maverage training of epoch %d: loss %.5f acc %.5f auc %.5f\033[0m' % (epoch, avg_loss[0], avg_loss[1], avg_loss[2]))
classifier.eval()
test_loss = loop_dataset(test_graphs, classifier, list(range(len(test_graphs))))
if not cmd_args.printAUC:
test_loss[2] = 0.0
print('\033[93maverage test of epoch %d: loss %.5f acc %.5f auc %.5f\033[0m' % (epoch, test_loss[0], test_loss[1], test_loss[2]))
with open(cmd_args.data + '_acc_results.txt', 'a+') as f:
f.write(str(test_loss[1]) + '\n')
if cmd_args.printAUC:
with open(cmd_args.data + '_auc_results.txt', 'a+') as f:
f.write(str(test_loss[2]) + '\n')
if cmd_args.extract_features:
features, labels = classifier.output_features(train_graphs)
labels = labels.type('torch.FloatTensor')
np.savetxt('extracted_features_train.txt', torch.cat([labels.unsqueeze(1), features.cpu()], dim=1).detach().numpy(), '%.4f')
features, labels = classifier.output_features(test_graphs)
labels = labels.type('torch.FloatTensor')
np.savetxt('extracted_features_test.txt', torch.cat([labels.unsqueeze(1), features.cpu()], dim=1).detach().numpy(), '%.4f')