tf.compat.v1.flags.DEFINE_multi

Registers a generic MultiFlag that parses its args with a given parser.

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

Auxiliary function. Normal users should NOT use it directly.

Developers who need to create their own 'Parser' classes for options which can appear multiple times can call this module function to register their flags.

Args: