tff.federated_map
Stay organized with collections
Save and categorize content based on your preferences.
Maps a federated value pointwise using a mapping function.
tff.federated_map(
fn, arg
)
The function fn
is applied separately across the group of devices
represented by the placement type of arg
. For example, if value
has
placement type tff.CLIENTS
, then fn
is applied to each client
individually. In particular, this operation does not alter the placement of
the federated value.
Args |
fn
|
A mapping function to apply pointwise to member constituents of arg .
The parameter of this function must be of the same type as the member
constituents of arg .
|
arg
|
A value of a TFF federated type (or a value that can be implicitly
converted into a TFF federated type, e.g., by zipping) placed at
tff.CLIENTS or tff.SERVER .
|
Returns |
A federated value with the same placement as arg that represents the
result of fn on the member constituent of arg .
|
Raises |
TypeError
|
If the arguments are not of the appropriate types.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-01-17 UTC.
[null,null,["Last updated 2025-01-17 UTC."],[],[],null,["# tff.federated_map\n\n\u003cbr /\u003e\n\n|-------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [View source on GitHub](https://github.com/tensorflow/federated/blob/v0.87.0 Version 2.0, January 2004 Licensed under the Apache License, Version 2.0 (the) |\n\nMaps a federated value pointwise using a mapping function. \n\n tff.federated_map(\n fn, arg\n )\n\nThe function `fn` is applied separately across the group of devices\nrepresented by the placement type of `arg`. For example, if `value` has\nplacement type [`tff.CLIENTS`](../tff#CLIENTS), then `fn` is applied to each client\nindividually. In particular, this operation does not alter the placement of\nthe federated value.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ---- ||\n|-------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `fn` | A mapping function to apply pointwise to member constituents of `arg`. The parameter of this function must be of the same type as the member constituents of `arg`. |\n| `arg` | A value of a TFF federated type (or a value that can be implicitly converted into a TFF federated type, e.g., by zipping) placed at [`tff.CLIENTS`](../tff#CLIENTS) or [`tff.SERVER`](../tff#SERVER). |\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Returns ------- ||\n|---|---|\n| A federated value with the same placement as `arg` that represents the result of `fn` on the member constituent of `arg`. ||\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Raises ------ ||\n|-------------|----------------------------------------------------|\n| `TypeError` | If the arguments are not of the appropriate types. |\n\n\u003cbr /\u003e"]]