Applies a given function to a federated value on tff.SERVER
.
tff.federated_apply(
fn, arg
)
Deprecation warning: tff.federated_apply()
is deprecated, use
tff.federated_map()
instead.
Args |
fn
|
A function to apply to the member content of arg on the tff.SERVER .
The parameter of this function must be of the same type as the member
constituent of arg .
|
arg
|
A value of a TFF federated type placed at the tff.SERVER , and with
the all_equal bit set.
|
Returns |
A federated value on the tff.SERVER that represents the result of applying
fn to the member constituent of arg .
|
Raises |
TypeError
|
If the arguments are not of the appropriate types.
|