A multi_enum_class flag.
Inherits From: MultiFlag
tf.compat.v1.flags.MultiEnumClassFlag( name, default, help_string, enum_class, case_sensitive=False, **args )
See the doc for MultiFlag for most behaviors of this class. In addition, this class knows how to handle enum.Enum instances as values for this flag type.
Attributes | |
---|---|
value |
flag_type
flag_type()
See base class.
parse
parse( arguments )
Parses one or more arguments with the installed parser.
Args | |
---|---|
arguments | a single argument or a list of arguments (typically a list of default values); a single argument is converted internally into a list containing one item. |
serialize
serialize()
Serializes the flag.
unparse
unparse()
__eq__
__eq__( other )
Return self==value.
__ge__
__ge__( other, NotImplemented=NotImplemented )
Return a >= b. Computed by @total_ordering from (not a < b).
__gt__
__gt__( other, NotImplemented=NotImplemented )
Return a > b. Computed by @total_ordering from (not a < b) and (a != b).
__le__
__le__( other, NotImplemented=NotImplemented )
Return a <= b. Computed by @total_ordering from (a < b) or (a == b).
__lt__
__lt__( other )
Return self<value.
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r2.3/api_docs/python/tf/compat/v1/flags/MultiEnumClassFlag