This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
combine_nets.py
257 lines (175 loc) · 8.37 KB
/
combine_nets.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
import torch
import torch.nn.functional as F
import numpy as np
from model import FcNet
from matching.pfnm import layer_group_descent as pdm_multilayer_group_descent
from matching.pfnm_communication import layer_group_descent as pdm_iterative_layer_group_descent
from matching.pfnm_communication import build_init as pdm_build_init
from itertools import product
from sklearn.metrics import confusion_matrix
def prepare_weight_matrix(n_classes, weights: dict):
weights_list = {}
for net_i, cls_cnts in weights.items():
cls = np.array(list(cls_cnts.keys()))
cnts = np.array(list(cls_cnts.values()))
weights_list[net_i] = np.array([0] * n_classes, dtype=np.float32)
weights_list[net_i][cls] = cnts
weights_list[net_i] = torch.from_numpy(weights_list[net_i]).view(1, -1)
return weights_list
def prepare_uniform_weights(n_classes, net_cnt, fill_val=1):
weights_list = {}
for net_i in range(net_cnt):
temp = np.array([fill_val] * n_classes, dtype=np.float32)
weights_list[net_i] = torch.from_numpy(temp).view(1, -1)
return weights_list
def prepare_sanity_weights(n_classes, net_cnt):
return prepare_uniform_weights(n_classes, net_cnt, fill_val=0)
def normalize_weights(weights):
Z = np.array([])
eps = 1e-6
weights_norm = {}
for _, weight in weights.items():
if len(Z) == 0:
Z = weight.data.numpy()
else:
Z = Z + weight.data.numpy()
for mi, weight in weights.items():
weights_norm[mi] = weight / torch.from_numpy(Z + eps)
return weights_norm
def get_weighted_average_pred(models: list, weights: dict, x):
out_weighted = None
# Compute the predictions
for model_i, model in enumerate(models):
out = F.softmax(model(x), dim=-1) # (N, C)
if out_weighted is None:
out_weighted = (out * weights[model_i])
else:
out_weighted += (out * weights[model_i])
return out_weighted
def compute_ensemble_accuracy(models: list, dataloader, n_classes, train_cls_counts=None, uniform_weights=False, sanity_weights=False):
correct, total = 0, 0
true_labels_list, pred_labels_list = np.array([]), np.array([])
was_training = [False]*len(models)
for i, model in enumerate(models):
if model.training:
was_training[i] = True
model.eval()
if uniform_weights is True:
weights_list = prepare_uniform_weights(n_classes, len(models))
elif sanity_weights is True:
weights_list = prepare_sanity_weights(n_classes, len(models))
else:
weights_list = prepare_weight_matrix(n_classes, train_cls_counts)
weights_norm = normalize_weights(weights_list)
with torch.no_grad():
for batch_idx, (x, target) in enumerate(dataloader):
target = target.long()
out = get_weighted_average_pred(models, weights_norm, x)
_, pred_label = torch.max(out, 1)
total += x.data.size()[0]
correct += (pred_label == target.data).sum().item()
pred_labels_list = np.append(pred_labels_list, pred_label.numpy())
true_labels_list = np.append(true_labels_list, target.data.numpy())
print(correct, total)
conf_matrix = confusion_matrix(true_labels_list, pred_labels_list)
for i, model in enumerate(models):
if was_training[i]:
model.train()
return correct / float(total), conf_matrix
def pdm_prepare_weights(nets):
weights = []
for net_i, net in enumerate(nets):
layer_i = 0
statedict = net.state_dict()
net_weights = []
while True:
if ('layers.%d.weight' % layer_i) not in statedict.keys():
break
layer_weight = statedict['layers.%d.weight' % layer_i].numpy().T
layer_bias = statedict['layers.%d.bias' % layer_i].numpy()
net_weights.extend([layer_weight, layer_bias])
layer_i += 1
weights.append(net_weights)
return weights
def pdm_prepare_freq(cls_freqs, n_classes):
freqs = []
for net_i in sorted(cls_freqs.keys()):
net_freqs = [0] * n_classes
for cls_i in cls_freqs[net_i]:
net_freqs[cls_i] = cls_freqs[net_i][cls_i]
freqs.append(np.array(net_freqs))
return freqs
def compute_pdm_net_accuracy(weights, train_dl, test_dl, n_classes):
dims = []
dims.append(weights[0].shape[0])
for i in range(0, len(weights), 2):
dims.append(weights[i].shape[1])
ip_dim = dims[0]
op_dim = dims[-1]
hidden_dims = dims[1:-1]
pdm_net = FcNet(ip_dim, hidden_dims, op_dim)
statedict = pdm_net.state_dict()
# print(pdm_net)
i = 0
layer_i = 0
while i < len(weights):
weight = weights[i]
i += 1
bias = weights[i]
i += 1
statedict['layers.%d.weight' % layer_i] = torch.from_numpy(weight.T)
statedict['layers.%d.bias' % layer_i] = torch.from_numpy(bias)
layer_i += 1
pdm_net.load_state_dict(statedict)
train_acc, conf_matrix_train = compute_ensemble_accuracy([pdm_net], train_dl, n_classes, uniform_weights=True)
test_acc, conf_matrix_test = compute_ensemble_accuracy([pdm_net], test_dl, n_classes, uniform_weights=True)
return train_acc, test_acc, conf_matrix_train, conf_matrix_test
def compute_pdm_matching_multilayer(models, train_dl, test_dl, cls_freqs, n_classes, sigma0=None, it=0, sigma=None, gamma=None):
batch_weights = pdm_prepare_weights(models)
batch_freqs = pdm_prepare_freq(cls_freqs, n_classes)
res = {}
best_test_acc, best_train_acc, best_weights, best_sigma, best_gamma, best_sigma0 = -1, -1, None, -1, -1, -1
gammas = [1.0, 1e-3, 50.0] if gamma is None else [gamma]
sigmas = [1.0, 0.1, 0.5] if sigma is None else [sigma]
sigma0s = [1.0, 10.0] if sigma0 is None else [sigma0]
for gamma, sigma, sigma0 in product(gammas, sigmas, sigma0s):
print("Gamma: ", gamma, "Sigma: ", sigma, "Sigma0: ", sigma0)
hungarian_weights = pdm_multilayer_group_descent(
batch_weights, sigma0_layers=sigma0, sigma_layers=sigma, batch_frequencies=batch_freqs, it=it, gamma_layers=gamma
)
train_acc, test_acc, _, _ = compute_pdm_net_accuracy(hungarian_weights, train_dl, test_dl, n_classes)
key = (sigma0, sigma, gamma)
res[key] = {}
res[key]['shapes'] = list(map(lambda x: x.shape, hungarian_weights))
res[key]['train_accuracy'] = train_acc
res[key]['test_accuracy'] = test_acc
print('Sigma0: %s. Sigma: %s. Shapes: %s, Accuracy: %f' % (
str(sigma0), str(sigma), str(res[key]['shapes']), test_acc))
if train_acc > best_train_acc:
best_test_acc = test_acc
best_train_acc = train_acc
best_weights = hungarian_weights
best_sigma = sigma
best_gamma = gamma
best_sigma0 = sigma0
print('Best sigma0: %f, Best sigma: %f, Best Gamma: %f, Best accuracy (Test): %f. Training acc: %f' % (
best_sigma0, best_sigma, best_gamma, best_test_acc, best_train_acc))
return (best_sigma0, best_sigma, best_gamma, best_test_acc, best_train_acc, best_weights, res)
def compute_iterative_pdm_matching(models, train_dl, test_dl, cls_freqs, n_classes, sigma, sigma0, gamma, it, old_assignment=None):
batch_weights = pdm_prepare_weights(models)
batch_freqs = pdm_prepare_freq(cls_freqs, n_classes)
hungarian_weights, assignments = pdm_iterative_layer_group_descent(
batch_weights, batch_freqs, sigma_layers=sigma, sigma0_layers=sigma0, gamma_layers=gamma, it=it, assignments_old=old_assignment
)
train_acc, test_acc, conf_matrix_train, conf_matrix_test = compute_pdm_net_accuracy(hungarian_weights, train_dl, test_dl, n_classes)
batch_weights_new = [pdm_build_init(hungarian_weights, assignments, j) for j in range(len(models))]
matched_net_shapes = list(map(lambda x: x.shape, hungarian_weights))
return batch_weights_new, train_acc, test_acc, matched_net_shapes, assignments, hungarian_weights, conf_matrix_train, conf_matrix_test
def flatten_weights(weights_j):
flat_weights = np.hstack((weights_j[0].T, weights_j[1].reshape(-1,1), weights_j[2]))
return flat_weights
def build_network(clusters, batch_weights, D):
cluster_network = [clusters[:,:D].T, clusters[:,D].T, clusters[:,(D+1):]]
bias = np.mean(batch_weights, axis=0)[-1]
cluster_network += [bias]
return cluster_network