Skip to content

declearn.optimizer.modules.ScaffoldClientModule

Bases: OptiModule[ScaffoldAuxVar]

Client-side Stochastic Controlled Averaging (SCAFFOLD) module.

This module is to be added to the optimizer used by a federated- learning client, and expects that the server's optimizer use its counterpart module: ScaffoldServerModule.

This module implements the following algorithm:

Init:
    state = 0
    local = 0
    delta = 0
    _past = 0
    _step = 0
Step(grads):
    _past += grads
    _step += 1
    grads = grads - delta
Send -> l_upd:
    loc_n = (_past / _step)
    l_upd = loc_n - local
    local = loc_n
Receive(state):
    state = state
    delta = local - state
    reset(_past, _step) to 0

In other words, this module applies a correction term to each and every input gradient, which is defined as the difference between a local (node-specific) state and a global one, which is received from a paired server-side module. At the end of a training round (made of multiple steps) it computes an updated local state based on the accumulated sum of raw input gradients. The difference between the new and previous local states is then shared with the server, that aggregates client-wise updates into the new global state and emits it towards nodes in return.

The SCAFFOLD algorithm is described in reference [1]. The server-side correction of aggregated gradients, the storage of raw local and shared states, and the computation of the updated shared state and derived client-wise delta values are deferred to ScaffoldServerModule.

The formula applied to compute the updated local state variables corresponds to the "Option-II" in the paper. Implementing Option-I would require holding a copy of the shared model and computing its gradients in addition to those of the local model, effectively doubling computations. This can be done in declearn, but requires implementing an alternative training procedure rather than an optimizer plug-in.

References

[1] Karimireddy et al., 2019. SCAFFOLD: Stochastic Controlled Averaging for Federated Learning. https://arxiv.org/abs/1910.06378

Source code in declearn/optimizer/modules/_scaffold.py
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
class ScaffoldClientModule(OptiModule[ScaffoldAuxVar]):
    """Client-side Stochastic Controlled Averaging (SCAFFOLD) module.

    This module is to be added to the optimizer used by a federated-
    learning client, and expects that the server's optimizer use its
    counterpart module:
    [`ScaffoldServerModule`][declearn.optimizer.modules.ScaffoldServerModule].

    This module implements the following algorithm:

        Init:
            state = 0
            local = 0
            delta = 0
            _past = 0
            _step = 0
        Step(grads):
            _past += grads
            _step += 1
            grads = grads - delta
        Send -> l_upd:
            loc_n = (_past / _step)
            l_upd = loc_n - local
            local = loc_n
        Receive(state):
            state = state
            delta = local - state
            reset(_past, _step) to 0

    In other words, this module applies a correction term to each
    and every input gradient, which is defined as the difference
    between a local (node-specific) state and a global one, which
    is received from a paired server-side module. At the end of a
    training round (made of multiple steps) it computes an updated
    local state based on the accumulated sum of raw input gradients.
    The difference between the new and previous local states is then
    shared with the server, that aggregates client-wise updates into
    the new global state and emits it towards nodes in return.

    The SCAFFOLD algorithm is described in reference [1].
    The server-side correction of aggregated gradients, the storage
    of raw local and shared states, and the computation of the updated
    shared state and derived client-wise delta values are deferred to
    `ScaffoldServerModule`.

    The formula applied to compute the updated local state variables
    corresponds to the "Option-II" in the paper.
    Implementing Option-I would require holding a copy of the shared
    model and computing its gradients in addition to those of the
    local model, effectively doubling computations. This can be done
    in `declearn`, but requires implementing an alternative training
    procedure rather than an optimizer plug-in.

    References
    ----------
    [1] Karimireddy et al., 2019.
        SCAFFOLD: Stochastic Controlled Averaging for Federated Learning.
        https://arxiv.org/abs/1910.06378
    """

    name = "scaffold-client"
    aux_name = "scaffold"

    def __init__(
        self,
    ) -> None:
        """Instantiate the client-side SCAFFOLD gradients-correction module."""
        self.uuid = str(uuid.uuid4())
        self.state = 0.0  # type: Union[Vector, float]
        self.delta = 0.0  # type: Union[Vector, float]
        self.sglob = 0.0  # type: Union[Vector, float]
        self._grads = 0.0  # type: Union[Vector, float]
        self._steps = 0

    def run(
        self,
        gradients: Vector,
    ) -> Vector:
        # Accumulate the uncorrected gradients.
        self._grads = self._grads + gradients
        self._steps += 1
        # Apply state-based correction to outputs.
        return gradients - self.delta

    def collect_aux_var(
        self,
    ) -> Optional[ScaffoldAuxVar]:
        """Return auxiliary variables that need to be shared between nodes.

        Compute and package (without applying it) the updated value
        of the local state variable, so that the server may compute
        the updated shared state variable.

        Returns
        -------
        aux_var:
            Auxiliary variables that are to be shared, aggregated and
            eventually passed to a server-held `ScaffoldServerModule`.

        Warns
        -----
        RuntimeWarning
            If called on an instance that has not processed any gradients
            (via a call to `run`) since the last call to `process_aux_var`
            (or its instantiation).
        """
        # Warn and return an empty dict if no steps were run.
        if not self._steps:
            warnings.warn(
                "Collecting auxiliary variables from a scaffold module "
                "that was not run. The local state update was skipped, "
                "and empty auxiliary variables are emitted.",
                RuntimeWarning,
            )
            return None
        # Compute the updated local state and assign it.
        state_next = self._compute_updated_state()
        state_updt = state_next - self.state
        self.state = state_next
        # Send the local state's update.
        return ScaffoldAuxVar(delta=state_updt, clients={self.uuid})

    def _compute_updated_state(
        self,
    ) -> Vector:
        """Compute and return the updated value of the local state.

        Note: the computed update is *not* applied by this method.

        The computation implemented here is equivalent to "Option II"
        of the SCAFFOLD paper. In that paper, authors write that:
            c_i^+ = (c_i - c) + (x - y_i) / (K * eta_l)
        where x are the shared model's weights, y_i are the local
        model's weights after K optimization steps with eta_l lr,
        c is the shared global state and c_i is the local state.

        Noting that (x - y_i) is in fact the difference between the
        local model's weights before and after running K training
        steps, we rewrite it as eta_l * Sum_k(grad(y_i^k) - D_i),
        where we define D_i = (c_i - c). Thus we rewrite c_i^+ as:
            c_i^+ = D_i + (1/K)*Sum_k(grad(y_i^k) - D_i)
        Noting that D_i is constant across steps, we take it out of
        the summation term, leaving us with:
            c_i^+ = (1/K)*Sum_k(grad(y_i^k))

        Hence the new local state can be computed by averaging the
        gradients input to this module along the training steps.
        """
        if not self._steps:  # pragma: no cover
            raise ValueError(
                "Cannot compute an updated state when no steps were run."
            )
        if not isinstance(self._grads, Vector):  # pragma: no cover
            raise TypeError(
                "Internal gradients accumulator is not a Vector instance. "
                "This seems to indicate that the Scaffold module received "
                "improper-type inputs, which should not be possible."
            )
        return self._grads / self._steps

    def process_aux_var(
        self,
        aux_var: ScaffoldAuxVar,
    ) -> None:
        """Update this module based on received shared auxiliary variables.

        Collect the (local_state - shared_state) variable sent by server.
        Reset hidden variables used to compute the local state's updates.

        Parameters
        ----------
        aux_var:
            Auxiliary variables that are to be processed by this module,
            emitted by a counterpart OptiModule on the other side of the
            client-server relationship.

        Raises
        ------
        KeyError
            If `aux_var` is empty.
        TypeError
            If `aux_var` has unproper type.
        """
        if not isinstance(aux_var, ScaffoldAuxVar):
            raise TypeError(
                f"'{self.__class__.__name__}.process_aux_var' received "
                f"auxiliary variables of unproper type: '{type(aux_var)}'."
            )
        if aux_var.state is None:
            raise KeyError(
                "Missing 'state' data in auxiliary variables passed to "
                f"'{self.__class__.__name__}.process_aux_var'."
            )
        # Assign new global state and update the local correction term.
        self.sglob = aux_var.state
        self.delta = self.state - self.sglob
        # Reset internal local variables.
        self._grads = 0.0
        self._steps = 0

    def get_state(
        self,
    ) -> Dict[str, Any]:
        return {
            "state": self.state,
            "sglob": self.sglob,
            "uuid": self.uuid,
        }

    def set_state(
        self,
        state: Dict[str, Any],
    ) -> None:
        for key in ("state", "sglob", "uuid"):
            if key not in state:
                raise KeyError(f"Missing required state variable '{key}'.")
        # Assign received information.
        self.state = state["state"]
        self.sglob = state["sglob"]
        self.uuid = state["uuid"]
        # Reset correction state and internal local variables.
        self.delta = self.state - self.sglob
        self._grads = 0.0
        self._steps = 0

__init__()

Instantiate the client-side SCAFFOLD gradients-correction module.

Source code in declearn/optimizer/modules/_scaffold.py
178
179
180
181
182
183
184
185
186
187
def __init__(
    self,
) -> None:
    """Instantiate the client-side SCAFFOLD gradients-correction module."""
    self.uuid = str(uuid.uuid4())
    self.state = 0.0  # type: Union[Vector, float]
    self.delta = 0.0  # type: Union[Vector, float]
    self.sglob = 0.0  # type: Union[Vector, float]
    self._grads = 0.0  # type: Union[Vector, float]
    self._steps = 0

collect_aux_var()

Return auxiliary variables that need to be shared between nodes.

Compute and package (without applying it) the updated value of the local state variable, so that the server may compute the updated shared state variable.

Returns:

Name Type Description
aux_var Optional[ScaffoldAuxVar]

Auxiliary variables that are to be shared, aggregated and eventually passed to a server-held ScaffoldServerModule.

Warns:

Type Description
RuntimeWarning

If called on an instance that has not processed any gradients (via a call to run) since the last call to process_aux_var (or its instantiation).

Source code in declearn/optimizer/modules/_scaffold.py
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
def collect_aux_var(
    self,
) -> Optional[ScaffoldAuxVar]:
    """Return auxiliary variables that need to be shared between nodes.

    Compute and package (without applying it) the updated value
    of the local state variable, so that the server may compute
    the updated shared state variable.

    Returns
    -------
    aux_var:
        Auxiliary variables that are to be shared, aggregated and
        eventually passed to a server-held `ScaffoldServerModule`.

    Warns
    -----
    RuntimeWarning
        If called on an instance that has not processed any gradients
        (via a call to `run`) since the last call to `process_aux_var`
        (or its instantiation).
    """
    # Warn and return an empty dict if no steps were run.
    if not self._steps:
        warnings.warn(
            "Collecting auxiliary variables from a scaffold module "
            "that was not run. The local state update was skipped, "
            "and empty auxiliary variables are emitted.",
            RuntimeWarning,
        )
        return None
    # Compute the updated local state and assign it.
    state_next = self._compute_updated_state()
    state_updt = state_next - self.state
    self.state = state_next
    # Send the local state's update.
    return ScaffoldAuxVar(delta=state_updt, clients={self.uuid})

process_aux_var(aux_var)

Update this module based on received shared auxiliary variables.

Collect the (local_state - shared_state) variable sent by server. Reset hidden variables used to compute the local state's updates.

Parameters:

Name Type Description Default
aux_var ScaffoldAuxVar

Auxiliary variables that are to be processed by this module, emitted by a counterpart OptiModule on the other side of the client-server relationship.

required

Raises:

Type Description
KeyError

If aux_var is empty.

TypeError

If aux_var has unproper type.

Source code in declearn/optimizer/modules/_scaffold.py
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
def process_aux_var(
    self,
    aux_var: ScaffoldAuxVar,
) -> None:
    """Update this module based on received shared auxiliary variables.

    Collect the (local_state - shared_state) variable sent by server.
    Reset hidden variables used to compute the local state's updates.

    Parameters
    ----------
    aux_var:
        Auxiliary variables that are to be processed by this module,
        emitted by a counterpart OptiModule on the other side of the
        client-server relationship.

    Raises
    ------
    KeyError
        If `aux_var` is empty.
    TypeError
        If `aux_var` has unproper type.
    """
    if not isinstance(aux_var, ScaffoldAuxVar):
        raise TypeError(
            f"'{self.__class__.__name__}.process_aux_var' received "
            f"auxiliary variables of unproper type: '{type(aux_var)}'."
        )
    if aux_var.state is None:
        raise KeyError(
            "Missing 'state' data in auxiliary variables passed to "
            f"'{self.__class__.__name__}.process_aux_var'."
        )
    # Assign new global state and update the local correction term.
    self.sglob = aux_var.state
    self.delta = self.state - self.sglob
    # Reset internal local variables.
    self._grads = 0.0
    self._steps = 0