Server

class Server(*, client_manager: ClientManager, strategy: Strategy | None = None)[소스]

기반 클래스: object

Flower 서버.

메소드

client_manager()

Return ClientManager.

disconnect_all_clients(timeout)

Send shutdown signal to all clients.

evaluate_round(server_round, timeout)

Validate current global model on a number of clients.

fit(num_rounds, timeout)

Run federated averaging for a number of rounds.

fit_round(server_round, timeout)

Perform a single round of federated averaging.

set_max_workers(max_workers)

Set the max_workers used by ThreadPoolExecutor.

set_strategy(strategy)

Replace server strategy.

client_manager() ClientManager[소스]

Return ClientManager.

disconnect_all_clients(timeout: float | None) None[소스]

Send shutdown signal to all clients.

evaluate_round(server_round: int, timeout: float | None) tuple[float | None, dict[str, bool | bytes | float | int | str], tuple[list[tuple[ClientProxy, EvaluateRes]], list[tuple[ClientProxy, EvaluateRes] | BaseException]]] | None[소스]

Validate current global model on a number of clients.

fit(num_rounds: int, timeout: float | None) tuple[History, float][소스]

Run federated averaging for a number of rounds.

fit_round(server_round: int, timeout: float | None) tuple[Parameters | None, dict[str, bool | bytes | float | int | str], tuple[list[tuple[ClientProxy, FitRes]], list[tuple[ClientProxy, FitRes] | BaseException]]] | None[소스]

Perform a single round of federated averaging.

set_max_workers(max_workers: int | None) None[소스]

Set the max_workers used by ThreadPoolExecutor.

set_strategy(strategy: Strategy) None[소스]

Replace server strategy.