Class OptionalSpec
Represents an optional potentially containing a structured value. TypeSpecInherits From:
Aliases:
- Class
tf.compat.v1.OptionalSpec
- Class
tf.compat.v1.data.experimental.OptionalStructure
- Class
tf.compat.v2.OptionalSpec
init
__init__(value_structure)
Initialize self. See help(type(self)) for accurate signature.
Properties
value_type
The Python type for values that are compatible with this TypeSpec.
Methods
eq
__eq__(other)
Return self==value.
ne
__ne__(other)
Return self!=value.
from_value
@staticmethod
from_value(value)
is_compatible_with
is_compatible_with(spec_or_value)
Returns true if spec_or_value
is compatible with this TypeSpec.
most_specific_compatible_type
most_specific_compatible_type(other)
Returns the most specific TypeSpec compatible with self
and other
.
Args:
other
: ATypeSpec
.
Raises:
ValueError
: If there is no TypeSpec that is compatible with bothself
andother
.