secretflow.ml.nn.fl.backend.tensorflow.strategy.fed_prox 源代码
#!/usr/bin/env python3
# *_* coding: utf-8 *_*
# Copyright 2022 Ant Group Co., Ltd.
#
# 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
#
# https://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.
from typing import List, Tuple
from secretflow.ml.nn.fl.backend.tensorflow.fl_base import BaseTFModel
import numpy as np
import copy
import collections
import tensorflow as tf
from secretflow.device import PYUObject, proxy
from secretflow.ml.nn.fl.strategy_dispatcher import register_strategy
[文档]class FedProx(BaseTFModel):
"""
FedfProx: An FL optimization strategy that addresses the challenge of heterogeneity on data
(non-IID) and devices, which adds a proximal term to the local objective function of each
client, for better convergence. In the feature, this strategy will allow every client to
train locally with a different Gamma-inexactness, for higher training efficiency.
"""
[文档] def w_norm(
self,
w1: List,
w2: List,
):
w1_minus_w2 = tf.nest.map_structure(lambda a, b: a - b, w1, w2)
return tf.linalg.global_norm(w1_minus_w2)
[文档] def train_step(
self, weights: np.ndarray, cur_steps: int, train_steps: int, **kwargs
) -> Tuple[np.ndarray, int]:
"""Accept ps model params,then do local train
Args:
updates: global updates from params server
cur_steps: current train step
train_steps: local training steps
kwargs: strategy-specific parameters
Returns:
Parameters after local training
"""
assert self.model is not None, "Model cannot be none, please give model define"
if weights is not None:
self.model.set_weights(weights)
num_sample = 0
dp_strategy = kwargs.get('dp_strategy', None)
mu = kwargs.get('mu', 0.0)
self.callbacks.on_train_batch_begin(cur_steps)
logs = {}
for _ in range(train_steps):
iter_data = next(self.train_set)
if len(iter_data) == 2:
x, y = iter_data
s_w = None
elif len(iter_data) == 3:
x, y, s_w = iter_data
if isinstance(x, collections.OrderedDict):
x = tf.stack(list(x.values()), axis=1)
num_sample += x.shape[0]
with tf.GradientTape() as tape:
# Step 1: forward pass
y_pred = self.model(x, training=True)
# Step 2: loss calculation, the loss function is configured in `compile()`.
loss = self.model.compiled_loss(
y,
y_pred,
regularization_losses=self.model.losses,
sample_weight=s_w,
)
# assumption: the compiled loss is the estimated empirical loss on per single sample
if weights is not None:
# weights could be None in the very first step
proximal = tf.square(
self.w_norm(weights, self.model.trainable_variables)
) # proximal = ||w - w^t||^2
# loss: adds the proximal term to the obj function
loss += mu / 2 * proximal
# Step 3: back propagation
trainable_vars = self.model.trainable_variables
gradients = tape.gradient(loss, trainable_vars)
self.model.optimizer.apply_gradients(zip(gradients, trainable_vars))
# Step4: update metrics
self.model.compiled_metrics.update_state(y, y_pred)
for m in self.model.metrics:
logs[m.name] = m.result().numpy()
self.callbacks.on_train_batch_end(cur_steps + train_steps, logs)
self.logs = logs
self.epoch_logs = copy.deepcopy(self.logs)
model_weights = self.model.get_weights()
# DP operation
if dp_strategy is not None:
if dp_strategy.model_gdp is not None:
model_weights = dp_strategy.model_gdp(self.model.get_weights())
return model_weights, num_sample
[文档]@register_strategy(strategy_name='fed_prox', backend='tensorflow')
@proxy(PYUObject)
class PYUFedProx(FedProx):
pass