tf.compat.v1.flags.DEFINE

Registers a generic Flag object.

Auxiliary function: clients should use the specialized DEFINE_<type> function instead.

parser:class:ArgumentParser, used to parse the flag arguments.
namestr, the flag name.
defaultThe default value of the flag.
helpstr, the help message.
flag_values:class:FlagValues, the FlagValues instance with which the flag will be registered. This should almost never need to be overridden.
serializer:class:ArgumentSerializer, the flag serializer instance.
module_namestr, the name of the Python module declaring this flag. If not provided, it will be computed using the stack trace of this call.
requiredbool, is this a required flag. This must be used as a keyword argument.
**argsdict, the extra keyword args that are passed to Flag.__init__.

a handle to defined flag.