-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsim_server.py
More file actions
441 lines (382 loc) · 15.4 KB
/
sim_server.py
File metadata and controls
441 lines (382 loc) · 15.4 KB
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
# Copyright 2020 Adap GmbH. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Flower server."""
import concurrent.futures
import timeit
from logging import DEBUG, INFO
from typing import Dict, List, Optional, Tuple, Union
from flwr.common import (
Code,
DisconnectRes,
EvaluateIns,
EvaluateRes,
FitIns,
FitRes,
Parameters,
ReconnectIns,
Scalar,
)
from flwr.common.logger import log
from flwr.common.typing import GetParametersIns
from flwr.server.client_manager import ClientManager
from flwr.server.client_proxy import ClientProxy
from flwr.server.history import History
from flwr.server.strategy import FedAvg, Strategy
FitResultsAndFailures = Tuple[
List[Tuple[ClientProxy, FitRes]],
List[Union[Tuple[ClientProxy, FitRes], BaseException]],
]
EvaluateResultsAndFailures = Tuple[
List[Tuple[ClientProxy, EvaluateRes]],
List[Union[Tuple[ClientProxy, EvaluateRes], BaseException]],
]
ReconnectResultsAndFailures = Tuple[
List[Tuple[ClientProxy, DisconnectRes]],
List[Union[Tuple[ClientProxy, DisconnectRes], BaseException]],
]
class Server:
"""Flower server."""
def __init__(
self, *, client_manager: ClientManager, strategy: Optional[Strategy] = None
) -> None:
self._client_manager: ClientManager = client_manager
self.parameters: Parameters = Parameters(
tensors=[], tensor_type="numpy.ndarray"
)
self.strategy: Strategy = strategy if strategy is not None else FedAvg()
self.max_workers: Optional[int] = None
def set_max_workers(self, max_workers: Optional[int]) -> None:
"""Set the max_workers used by ThreadPoolExecutor."""
self.max_workers = max_workers
def set_strategy(self, strategy: Strategy) -> None:
"""Replace server strategy."""
self.strategy = strategy
def client_manager(self) -> ClientManager:
"""Return ClientManager."""
return self._client_manager
# pylint: disable=too-many-locals
def fit(self, num_rounds: int, timeout: Optional[float]) -> History:
"""Run federated averaging for a number of rounds."""
history = History()
# Initialize parameters
log(INFO, "Initializing global parameters")
self.parameters = self._get_initial_parameters(timeout=timeout)
log(INFO, "Evaluating initial parameters")
res = self.strategy.evaluate(0, parameters=self.parameters)
if res is not None:
log(
INFO,
"initial parameters (loss, other metrics): %s, %s",
res[0],
res[1],
)
history.add_loss_centralized(server_round=0, loss=res[0])
history.add_metrics_centralized(server_round=0, metrics=res[1])
# Run federated learning for num_rounds
log(INFO, "FL starting")
start_time = timeit.default_timer()
for current_round in range(1, num_rounds + 1):
# Train model and replace previous global model
res_fit = self.fit_round(server_round=current_round, timeout=timeout)
if res_fit:
parameters_prime, _, _ = res_fit # fit_metrics_aggregated
if parameters_prime:
self.parameters = parameters_prime
# Evaluate model using strategy implementation
res_cen = self.strategy.evaluate(current_round, parameters=self.parameters)
if res_cen is not None:
loss_cen, metrics_cen = res_cen
log(
INFO,
"fit progress: (%s, %s, %s, %s)",
current_round,
loss_cen,
metrics_cen,
timeit.default_timer() - start_time,
)
history.add_loss_centralized(server_round=current_round, loss=loss_cen)
history.add_metrics_centralized(
server_round=current_round, metrics=metrics_cen
)
# Evaluate model on a sample of available clients
res_fed = self.evaluate_round(server_round=current_round, timeout=timeout)
if res_fed:
loss_fed, evaluate_metrics_fed, _ = res_fed
if loss_fed:
history.add_loss_distributed(
server_round=current_round, loss=loss_fed
)
history.add_metrics_distributed(
server_round=current_round, metrics=evaluate_metrics_fed
)
print('disconencting clients:)')
self.disconnect_all_clients(timeout=None)
# Bookkeeping
end_time = timeit.default_timer()
elapsed = end_time - start_time
log(INFO, "FL finished in %s", elapsed)
return history
def evaluate_round(
self,
server_round: int,
timeout: Optional[float],
) -> Optional[
Tuple[Optional[float], Dict[str, Scalar], EvaluateResultsAndFailures]
]:
"""Validate current global model on a number of clients."""
# Get clients and their respective instructions from strategy
client_instructions = self.strategy.configure_evaluate(
server_round=server_round,
parameters=self.parameters,
client_manager=self._client_manager,
)
if not client_instructions:
log(INFO, "evaluate_round %s: no clients selected, cancel", server_round)
return None
log(
DEBUG,
"evaluate_round %s: strategy sampled %s clients (out of %s)",
server_round,
len(client_instructions),
self._client_manager.num_available(),
)
# Collect `evaluate` results from all clients participating in this round
results, failures = evaluate_clients(
client_instructions,
max_workers=self.max_workers,
timeout=timeout,
)
log(
DEBUG,
"evaluate_round %s received %s results and %s failures",
server_round,
len(results),
len(failures),
)
# Aggregate the evaluation results
aggregated_result: Tuple[
Optional[float],
Dict[str, Scalar],
] = self.strategy.aggregate_evaluate(server_round, results, failures)
loss_aggregated, metrics_aggregated = aggregated_result
return loss_aggregated, metrics_aggregated, (results, failures)
def fit_round(
self,
server_round: int,
timeout: Optional[float],
) -> Optional[
Tuple[Optional[Parameters], Dict[str, Scalar], FitResultsAndFailures]
]:
"""Perform a single round of federated averaging."""
# Get clients and their respective instructions from strategy
client_instructions = self.strategy.configure_fit(
server_round=server_round,
parameters=self.parameters,
client_manager=self._client_manager,
)
if not client_instructions:
log(INFO, "fit_round %s: no clients selected, cancel", server_round)
return None
log(
DEBUG,
"fit_round %s: strategy sampled %s clients (out of %s)",
server_round,
len(client_instructions),
self._client_manager.num_available(),
)
# Collect `fit` results from all clients participating in this round
results, failures = fit_clients(
client_instructions=client_instructions,
max_workers=self.max_workers,
timeout=timeout,
)
log(
DEBUG,
"fit_round %s received %s results and %s failures",
server_round,
len(results),
len(failures),
)
# Aggregate training results
aggregated_result: Tuple[
Optional[Parameters],
Dict[str, Scalar],
] = self.strategy.aggregate_fit(server_round, results, failures)
parameters_aggregated, metrics_aggregated = aggregated_result
return parameters_aggregated, metrics_aggregated, (results, failures)
def disconnect_all_clients(self, timeout: Optional[float]) -> None:
"""Send shutdown signal to all clients."""
all_clients = self._client_manager.all()
clients = [all_clients[k] for k in all_clients.keys()]
instruction = ReconnectIns(seconds=None)
client_instructions = [(client_proxy, instruction) for client_proxy in clients]
_ = reconnect_clients(
client_instructions=client_instructions,
max_workers=self.max_workers,
timeout=timeout,
)
def _get_initial_parameters(self, timeout: Optional[float]) -> Parameters:
"""Get initial parameters from one of the available clients."""
# Server-side parameter initialization
parameters: Optional[Parameters] = self.strategy.initialize_parameters(
client_manager=self._client_manager
)
if parameters is not None:
log(INFO, "Using initial parameters provided by strategy")
return parameters
# Get initial parameters from one of the clients
log(INFO, "Requesting initial parameters from one random client")
random_client = self._client_manager.sample(1)[0]
ins = GetParametersIns(config={})
get_parameters_res = random_client.get_parameters(ins=ins, timeout=timeout)
log(INFO, "Received initial parameters from one random client")
return get_parameters_res.parameters
def reconnect_clients(
client_instructions: List[Tuple[ClientProxy, ReconnectIns]],
max_workers: Optional[int],
timeout: Optional[float],
) -> ReconnectResultsAndFailures:
"""Instruct clients to disconnect and never reconnect."""
with concurrent.futures.ThreadPoolExecutor(max_workers=max_workers) as executor:
submitted_fs = {
executor.submit(reconnect_client, client_proxy, ins, timeout)
for client_proxy, ins in client_instructions
}
finished_fs, _ = concurrent.futures.wait(
fs=submitted_fs,
timeout=None, # Handled in the respective communication stack
)
# Gather results
results: List[Tuple[ClientProxy, DisconnectRes]] = []
failures: List[Union[Tuple[ClientProxy, DisconnectRes], BaseException]] = []
for future in finished_fs:
failure = future.exception()
if failure is not None:
failures.append(failure)
else:
result = future.result()
results.append(result)
return results, failures
def reconnect_client(
client: ClientProxy,
reconnect: ReconnectIns,
timeout: Optional[float],
) -> Tuple[ClientProxy, DisconnectRes]:
"""Instruct client to disconnect and (optionally) reconnect later."""
disconnect = client.reconnect(
reconnect,
timeout=timeout,
)
return client, disconnect
def fit_clients(
client_instructions: List[Tuple[ClientProxy, FitIns]],
max_workers: Optional[int],
timeout: Optional[float],
) -> FitResultsAndFailures:
"""Refine parameters concurrently on all selected clients."""
with concurrent.futures.ThreadPoolExecutor(max_workers=max_workers) as executor:
submitted_fs = {
executor.submit(fit_client, client_proxy, ins, timeout)
for client_proxy, ins in client_instructions
}
finished_fs, _ = concurrent.futures.wait(
fs=submitted_fs,
timeout=None, # Handled in the respective communication stack
)
# Gather results
results: List[Tuple[ClientProxy, FitRes]] = []
failures: List[Union[Tuple[ClientProxy, FitRes], BaseException]] = []
for future in finished_fs:
_handle_finished_future_after_fit(
future=future, results=results, failures=failures
)
return results, failures
def fit_client(
client: ClientProxy, ins: FitIns, timeout: Optional[float]
) -> Tuple[ClientProxy, FitRes]:
"""Refine parameters on a single client."""
fit_res = client.fit(ins, timeout=timeout)
return client, fit_res
def _handle_finished_future_after_fit(
future: concurrent.futures.Future, # type: ignore
results: List[Tuple[ClientProxy, FitRes]],
failures: List[Union[Tuple[ClientProxy, FitRes], BaseException]],
) -> None:
"""Convert finished future into either a result or a failure."""
# Check if there was an exception
failure = future.exception()
if failure is not None:
failures.append(failure)
return
# Successfully received a result from a client
result: Tuple[ClientProxy, FitRes] = future.result()
_, res = result
# Check result status code
if res.status.code == Code.OK:
results.append(result)
return
# Not successful, client returned a result where the status code is not OK
failures.append(result)
def evaluate_clients(
client_instructions: List[Tuple[ClientProxy, EvaluateIns]],
max_workers: Optional[int],
timeout: Optional[float],
) -> EvaluateResultsAndFailures:
"""Evaluate parameters concurrently on all selected clients."""
with concurrent.futures.ThreadPoolExecutor(max_workers=max_workers) as executor:
submitted_fs = {
executor.submit(evaluate_client, client_proxy, ins, timeout)
for client_proxy, ins in client_instructions
}
finished_fs, _ = concurrent.futures.wait(
fs=submitted_fs,
timeout=None, # Handled in the respective communication stack
)
# Gather results
results: List[Tuple[ClientProxy, EvaluateRes]] = []
failures: List[Union[Tuple[ClientProxy, EvaluateRes], BaseException]] = []
for future in finished_fs:
_handle_finished_future_after_evaluate(
future=future, results=results, failures=failures
)
return results, failures
def evaluate_client(
client: ClientProxy,
ins: EvaluateIns,
timeout: Optional[float],
) -> Tuple[ClientProxy, EvaluateRes]:
"""Evaluate parameters on a single client."""
evaluate_res = client.evaluate(ins, timeout=timeout)
return client, evaluate_res
def _handle_finished_future_after_evaluate(
future: concurrent.futures.Future, # type: ignore
results: List[Tuple[ClientProxy, EvaluateRes]],
failures: List[Union[Tuple[ClientProxy, EvaluateRes], BaseException]],
) -> None:
"""Convert finished future into either a result or a failure."""
# Check if there was an exception
failure = future.exception()
if failure is not None:
failures.append(failure)
return
# Successfully received a result from a client
result: Tuple[ClientProxy, EvaluateRes] = future.result()
_, res = result
# Check result status code
if res.status.code == Code.OK:
results.append(result)
return
# Not successful, client returned a result where the status code is not OK
failures.append(result)