Parser of a string enum value (a string value from a given set).
Inherits From: ArgumentParser
tf.compat.v1.flags.EnumParser( enum_values, case_sensitive=True )
Args | |
---|---|
enum_values | [str], a non-empty list of string values in the enum. |
case_sensitive | bool, whether or not the enum is to be case-sensitive. |
Raises | |
---|---|
ValueError | When enum_values is empty. |
flag_type
flag_type()
See base class.
parse
parse( argument )
Determines validity of argument and returns the correct element of enum.
Args | |
---|---|
argument | str, the supplied flag value. |
Returns | |
---|---|
The first matching element from enum_values. |
Raises | |
---|---|
ValueError | Raised when argument didn't match anything in enum. |
syntactic_help = ''
© 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/EnumParser