tf.compat.v1.flags.DEFINE

Registers a generic Flag object.

tf.compat.v1.flags.DEFINE(
    parser, name, default, help, flag_values=_flagvalues.FLAGS, serializer=None,
    module_name=None, **args
)

NOTE: in the docstrings of all DEFINE* functions, "registers" is short for "creates a new flag and registers it".

Auxiliary function: clients should use the specialized DEFINE_ function instead.

Args: