-
Notifications
You must be signed in to change notification settings - Fork 2
/
main_fed_aggregate_old.py
261 lines (199 loc) · 10.1 KB
/
main_fed_aggregate_old.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Python version: 3.6
from asyncore import read
import copy
from fileinput import filename
import sys
import threading
import grpc
import numpy as np
import time, math
import torch
from utils.data_utils import data_setup, DatasetSplit
from utils.model_utils import *
from utils.aggregation import *
from options import call_parser
from models.Update import LocalUpdate
from models.test import test_img
from torch.utils.data import DataLoader
from concurrent import futures
# from utils.rdp_accountant import compute_rdp, get_privacy_spent
import warnings
import glob
import statistics
warnings.filterwarnings("ignore")
torch.cuda.is_available()
def serve(args):
# server = grpc.server(futures.ThreadPoolExecutor(max_workers=1))
# pb2_grpc.add_NodeExchangeServicer_to_server(ArgsExchange(), server)
# server.add_insecure_port("[::]:9999")
# server.start()
# fsl = lib.FileServer()
# fsl.start()
try:
torch.manual_seed(args.seed + args.repeat)
torch.cuda.manual_seed(args.seed + args.repeat)
np.random.seed(args.seed + args.repeat)
args, dataset_train, dataset_test, dict_users = data_setup(args)
print("{:<50}".format("=" * 15 + " data setup " + "=" * 50)[0:60])
print(
'length of dataset:{}'.format(len(dataset_train) + len(dataset_test)))
print('num. of training data:{}'.format(len(dataset_train)))
print('num. of testing data:{}'.format(len(dataset_test)))
print('num. of classes:{}'.format(args.num_classes))
print('num. of users:{}'.format(len(dict_users)))
print('arg.num_users:{}'.format(args.num_users))
args, net_glob = model_setup(args)
nodes = 2
loss_locals = []
local_updates = []
delta_norms = []
net_glob.train()
train_local_loss = []
test_acc = []
norm_med = []
log_path = set_log_path(args)
loss = []
localupdates = []
print(log_path)
# copy weights
global_model = copy.deepcopy(net_glob.state_dict())
if args.dataset == 'fmnist' or args.dataset == 'cifar':
dataset_test, val_set = torch.utils.data.random_split(
dataset_test, [9000, 1000])
print(len(dataset_test), len(val_set))
elif args.dataset == 'svhn':
dataset_test, val_set = torch.utils.data.random_split(
dataset_test, [len(dataset_test)-2000, 2000])
print(len(dataset_test), len(val_set))
t1 = time.time()
data_loader_list = []
#m = max(int(args.frac * args.num_users), 1)
m = max(int(0.5 * 1), 1)
for t in range(args.round):
pass
#args.local_lr = args.local_lr * args.decay_weight
# selected_idxs = list(np.random.choice(range(args.num_users), m, replace=False))
for i in range(args.num_users):
dataset = DatasetSplit(dataset_train, dict_users[i])
ldr_train = DataLoader(dataset, batch_size=args.batch_size, shuffle=True)
data_loader_list.append(ldr_train)
ldr_train_public = DataLoader(val_set, batch_size=args.batch_size, shuffle=True)
for n in range(nodes):
for t in range(args.round):
args.local_lr = args.local_lr * args.decay_weight
selected_idxs = list(np.random.choice(range(1), m, replace=False))
#selected_idxs = list(np.random.choice(range(args.num_users), m, replace=False))
print(f'appending node{n}{t}')
#localupdates.append(torch.load(f'/mydata/flcode/models/pickles/node{n}[{t}][0].pkl'))
#loss.append(torch.load(f'/mydata/flcode/models/pickles/node{0}-loss[{t}][0].pkl'))
localupdates = torch.load(f'/mydata/flcode/models/pickles/node{n}[{t}][0].pkl')
loss = torch.load(f'/mydata/flcode/models/pickles/node{n}-loss[{t}][0].pkl')
loss_locals = []
local_updates = []
delta_norms = []
for i in selected_idxs:
net_glob.load_state_dict(global_model)
#print("localupdates: ",localupdates)
#model_update = {k: localupdates[t][0].get(k) - global_model[k] for k in global_model.keys()}
model_update = {k: localupdates[0].get(k) - global_model[k] for k in global_model.keys()}
# compute local model norm
delta_norm = torch.norm(
torch.cat([
torch.flatten(model_update[k])
for k in model_update.keys()
]))
delta_norms.append(delta_norm)
local_updates.append(model_update)
loss_locals.append(loss)
print("local updates len",len(local_updates), "index",len(local_updates[0]))
norm_med.append(torch.median(torch.stack(delta_norms)).cpu())
sample_per_users = 5 #12500 # for two users , we take 25000 samples as per the loop
#num_selected_users = len(local_updates)
num_selected_users = len(selected_idxs)
model_update = {
k: local_updates[0][k] * 0.0
for k in local_updates[0].keys()
}
for i in range(num_selected_users):
global_model = {
# k: global_model[k] + local_updates[i][k] / num_selected_users
k: global_model[k] + local_updates[i][k] / num_selected_users
for k in global_model.keys()
}
print("num_selected_users: ",num_selected_users)
##################### testing on global model #######################
net_glob.load_state_dict(global_model)
net_glob.eval()
test_acc_, _ = test_img(net_glob, dataset_test, args)
test_acc.append(test_acc_)
'''
I am not calulating test_acc [test_accuracy] correctly, correct this thing
'''
train_local_loss.append(sum(loss_locals[0]) / len(loss_locals[0]))
print('t {:3d}: train_loss = {:.3f}, norm = {:.3f}, test_acc = {:.3f}'.
format(t, train_local_loss[-1], norm_med[-1], test_acc[-1]))
newll = list()
for i in range(len(loss_locals)):
newll.append(loss_locals[i][0])
for j in range(len(loss_locals[i])):
#print(f"i,j= [{i},{j}] |",loss_locals[i][j][0])
#newll.append(loss_locals[i][j][0])
# newll.append(loss_locals[i][0])
pass
#print(f"newll[{i}]: ",newll[i])
train_local_loss.append(sum(newll) / len(newll))
print('t {:3d}: train_loss = {:.3f}, norm = {:.3f}, test_acc = {:.3f}'.
format(t, train_local_loss[-1], norm_med[-1], test_acc[-1]))
print('t {:3d}: train_loss = {:.3f}, norm = {:.3f}, test_acc = {:.3f}'.
format(t, train_local_loss[-1], norm_med[-1], test_acc[-1]))
if math.isnan(train_local_loss[-1]) or train_local_loss[-1] > 1e8 or t == args.round - 1:
np.savetxt(log_path + "_test_acc_repeat_" + str(args.repeat) + ".csv",
test_acc,
delimiter=",")
np.savetxt(log_path + "_train_loss_repeat_" + str(args.repeat) + ".csv",
train_local_loss,
delimiter=",")
np.savetxt(log_path + "_norm__repeat_" + str(args.repeat) + ".csv", norm_med, delimiter=",")
#break;
#print("test_acc: ",test_acc)
# print('t {:3d}: train_loss = {:.3f}, norm = {:.3f}, test_acc = {:.3f}'.
# format(t, train_local_loss, norm_med, test_acc))
print("train_loss: ",sum(train_local_loss)/len(train_local_loss))
print("test_acc: ",sum(test_acc)/len(test_acc))
print("norm_med: ",sum(norm_med)/len(norm_med))
print('t {:3d}: train_loss = {:.3f}, norm = {:.3f}, test_acc = {:.3f}'.
format(t, sum(train_local_loss), sum(norm_med), sum(test_acc)))
# print('t {:3d}: train_loss = {:.3f}, norm = {:.3f}, test_acc = {:.3f}'.
# format(t, train_local_loss[-1], norm_med[-1], test_acc[-1]))
t2 = time.time()
hours, rem = divmod(t2 - t1, 3600)
minutes, seconds = divmod(rem, 60)
print("training time: {:0>2}:{:0>2}:{:05.2f}".format(int(hours), int(minutes), seconds))
except KeyboardInterrupt:
print("KeyboardInterrupt")
def aggregation_avg(global_model, local_updates):
'''
simple average
'''
model_update = {k: local_updates[0][k] *0.0 for k in local_updates[0].keys()}
for i in range(len(local_updates)):
model_update = {k: model_update[k] + local_updates[i][k] for k in global_model.keys()}
global_model = {k: global_model[k] + model_update[k]/ len(local_updates) for k in global_model.keys()}
return global_model
if __name__ == '__main__':
args = call_parser()
#user_counter = int(args.num_users / 2)
user_counter = 2
print("user counter : ", user_counter)
server_args = {
0: {
"user_index": user_counter, "dataset": "cifar", "gpu": -1, "round": 10
},
1: {
"user_index": args.num_users, "dataset": "cifar", "gpu": -1, "round": 10
}
}
args.num_users = user_counter
serve(args)