On this page
tf.compat.v1.flags.WhitespaceSeparatedListParser
Parser for a whitespace-separated list of strings.
Inherits From: BaseListParser
tf.compat.v1.flags.WhitespaceSeparatedListParser(
    comma_compat=False
)
  | Args | |
|---|---|
comma_compat | 
      bool, whether to support comma as an additional separator. If False then only whitespace is supported. This is intended only for backwards compatibility with flags that used to be comma-separated. | 
Methods
flag_type
  flag_type()
  See base class.
parse
  parse(
    argument
)
  Parses argument as whitespace-separated list of strings.
It also parses argument as comma-separated list of strings if requested.
| Args | |
|---|---|
argument | 
      string argument passed in the commandline. | 
| Returns | |
|---|---|
| [str], the parsed flag value. | 
Class Variables
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/WhitespaceSeparatedListParser