Deserializes 'type_proto' as a computation_types.Type.
tff.types.deserialize_type(
type_proto: Optional[pb.Type]
) -> Optional[tff.types.Type
]
Args |
type_proto
|
An object that supports same interface as pb.Type (e.g. pybind
backend C++ Type protocol buffer messages), or None .
|
Returns |
The corresponding instance of computation_types.Type (or None if the
argument was None).
|
Raises |
TypeError
|
if the argument is of the wrong type.
|
NotImplementedError
|
for type variants for which deserialization is not
implemented.
|