TensorFlow Federated 0.68.0
Pre-release
Pre-release
Release 0.68.0
Major Features and Improvements
- Added
tff.types.tensorflow_to_type
function to convert structures
containing tensorflow type specs into atff.Type
. - Deprecated
tff.types.infer_unplaced_type
. - Updated
tff.types.ArrayShape
to be defined as aSequence
not an
Iterable
, this is because thelen
of antff.types.ArrayShape
is used
for comparison. - Deprecated the
type_signature
parameter for the
tff.program.ReleaseManager.release
method.
Breaking Changes
- Removed the implementation of
tff.Value.__add__
. - Removed the deprecated
tff.Type.check_*()
functions, useisinstance
instead. - Removed
tff.types.at_clients
andtff.types.at_server
functions, use the
tff.FederatedType
constructor instead. - Removed support for handling
tf.data.DatasetSpec
,tf.RaggedTensorSpec
,
andtf.SparseTensorSpec
usingtff.to_type
, use
tff.types.tensorflow_to_type
instead. - Removed support for handling
tf.RaggedTensor
andtf.SparseTensor
using
infer_type
.