-
Notifications
You must be signed in to change notification settings - Fork 2
/
main_fed-sep11.py
318 lines (249 loc) · 11.6 KB
/
main_fed-sep11.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Python version: 3.6
from asyncore import read
import copy
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
warnings.filterwarnings("ignore")
torch.cuda.is_available()
import fdnodes_pb2_grpc as pb2_grpc
import fdnodes_pb2 as pb2
import file_grpc_lib as lib
# server_args = {
# "user_index":5,"dataset":"cifar","gpu":-1,"round":50
# }
class ArgsExchange(pb2_grpc.NodeExchangeServicer):
def get_args(self, request, context):
return pb2.args_data(**server_args.get(request.nodeid, {}))
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)))
# sample_per_users = int(sum([ len(dict_users[i]) for i in range(len(dict_users))])/len(dict_users))
sample_per_users = 0
for i in range(len(dict_users)):
sample_per_users += int(sum([len(dict_users[i]) / len(dict_users)]))
sample_per_users = 5 #12500 # for two users , we take 25000 samples as per the loop
print('num. of samples per user:{}'.format(sample_per_users))
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))
print("{:<50}".format("=" * 15 + " log path " + "=" * 50)[0:60])
log_path = set_log_path(args)
print(log_path)
args, net_glob = model_setup(args)
print("{:<50}".format("=" * 15 + " model setup " + "=" * 50)[0:60])
###################################### model initialization ###########################
print("{:<50}".format("=" * 15 + " training... " + "=" * 50)[0:60])
t1 = time.time()
net_glob.train()
# copy weights
global_model = copy.deepcopy(net_glob.state_dict())
local_m = []
train_local_loss = []
test_acc = []
norm_med = []
####################################### run experiment ##########################
# initialize data loader
data_loader_list = []
print("len(dict_user): ", len(dict_users))
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)
m = max(int(args.frac * args.num_users), 1)
for t in range(args.round):
args.local_lr = args.local_lr * args.decay_weight
selected_idxs = list(np.random.choice(range(args.num_users), m, replace=False))
print(selected_idxs)
num_selected_users = len(selected_idxs)
###################### local training : SGD for selected users ######################
loss_locals = []
local_updates = []
delta_norms = []
for i in selected_idxs:
print(i)
l_solver = LocalUpdate(args=args)
net_glob.load_state_dict(global_model)
# choose local solver
if args.local_solver == 'local_sgd':
new_model, loss = l_solver.local_sgd(
net=copy.deepcopy(net_glob).to(args.device),
ldr_train=data_loader_list[i])
# compute local delta
model_update = {k: new_model[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)
# clipping local model or not ? : no clip for cifar10
# threshold = delta_norm / args.clip
# if threshold > 1.0:
# for k in model_update.keys():
# model_update[k] = model_update[k] / threshold
local_updates.append(model_update)
print("local updates len",len(local_updates), "index",len(local_updates[0]))
loss_locals.append(loss)
norm_med.append(torch.median(torch.stack(delta_norms)).cpu())
'''
####################################
Download model from node1
################################
'''
# import file_grpc_lib as lib
# fsl = lib.FileServer()
# fsl.start()
# out_file_name = "/mydata/flcode/models/node1.pth"
# #os.remove(out_file_name)
# if os.path.exists(out_file_name):
# print("File Already Exists... Will use the existing one, please delete the old one or rename")
# else:
# fsl.download('whatever_name', out_file_name)
# print('Download from Node1 for .pth completed')
# fsl.stop_me()
'''
#####################################
'''
##################### communication: avg for all groups #######################
model_update = {
k: local_updates[0][k] * 0.0
for k in local_updates[0].keys()
}
torch.save(local_updates, "/mydata/flcode/models/pickles/node0.pkl")
torch.save(loss_locals, "/mydata/flcode/models/pickles/node0-loss.pkl")
node1 = "/mydata/flcode/models/pickles/node1.pkl"
sm1 = torch.load(node1)
node0 = "/mydata/flcode/models/pickles/node0.pkl"
sm0 = torch.load(node0)
##node0_loss = loss_locals + node1[2]
local_updates = sm0
num_selected_users = len(local_updates)
# node1_loss = torch.load("/mydata/flcode/models/pickles/node1-loss.pkl")
# loss_locals = loss_locals + node1_loss
print("num_selected_users,",num_selected_users)
for i in range(num_selected_users):
global_model = {
k: global_model[k] + local_updates[i][k] / num_selected_users
for k in global_model.keys()
}
# print("model_update: ",model_update)
# print(type(model_update))
# torch.save(net_glob.state_dict(),"/home/jahanxb/PycharmProjects/FLcode/models/temp.pth")
# torch.save(model_update, "/home/jahanxb/PycharmProjects/FLcode/models/node0.pth")
#
# import file_grpc_lib as lib
# client = lib.FileClient('localhost:8888')
# out_file_name = '/home/jahanxb/PycharmProjects/FLcode/models/received.pth'
# if os.path.exists(out_file_name):
# os.remove(out_file_name)
# client.download('whatever_name', out_file_name)
'''
Here we should Catch the aggregator for the client model
'''
##################### 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_)
train_local_loss.append(sum(loss_locals) / len(loss_locals))
# print('t {:3d}: '.format(t, ))
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;
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))
# ##############################
# ## End of Fedml
# ###############################
# torch.save(local_updates, "/mydata/flcode/models/node0.pkl")
# sm = torch.jit.script(model_update)
# sm.save('/mydata/flcode/models/node0.pth')
out_file_name = "/mydata/flcode/models/node1.pkl"
# if os.path.exists(out_file_name):
# print("File Already Exists... Will use the existing one, please delete the old one or rename")
# #os.remove(out_file_name)
# else:
# print('Download from Node1 for .pth started...')
# fsl.download('whatever_name', out_file_name)
# #fsl.stop_me()
# torch.load_state_dict(torch.load(out_file_name))
# torch.eval()
# client = lib.FileClient('localhost:8888')
# out_file_name = '/home/jahanxb/PycharmProjects/FLcode/models/received.pkl'
# if os.path.exists(out_file_name):
# os.remove(out_file_name)
# client.download('whatever_name', out_file_name)
except KeyboardInterrupt:
print("KeyboardInterrupt")
server.stop(0)
# server_args = {
# 0: {
# "user_index": 5, "dataset": "cifar", "gpu": -1, "round": 50
# },
# 1: {
# "user_index": 10, "dataset": "cifar", "gpu": -1, "round": 1
# }
# }
if __name__ == '__main__':
args = call_parser()
user_counter = int(args.num_users / 2)
print("user counter : ", user_counter)
server_args = {
0: {
"user_index": user_counter, "dataset": "cifar", "gpu": -1, "round": 1
},
1: {
"user_index": args.num_users, "dataset": "cifar", "gpu": -1, "round": 1
}
}
args.num_users = user_counter
serve(args)