tf.contrib.framework.nest.flatten_with_joined_string_paths( structure, separator='/' )
Defined in tensorflow/python/util/nest.py
.
Returns a list of (string path, data element) tuples.
The order of tuples produced matches that of nest.flatten
. This allows you to flatten a nested structure while keeping information about where in the structure each data element was located. See nest.yield_flat_paths
for more information.
structure
: the nested structure to flatten.separator
: string to separate levels of hierarchy in the results, defaults to '/'.A list of (string, data element) tuples.
© 2018 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/api_docs/python/tf/contrib/framework/nest/flatten_with_joined_string_paths