Home
last modified time | relevance | path

Searched refs:_yield_flat_up_to (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/python/data/util/
Dnest.py221 def _yield_flat_up_to(shallow_tree, input_tree): function
226 for input_leaf in _yield_flat_up_to(shallow_branch, input_branch):
370 return list(_yield_flat_up_to(shallow_tree, input_tree))
/external/tensorflow/tensorflow/python/util/
Dnest.py952 def _yield_flat_up_to(shallow_tree, input_tree, is_seq, path=()): function
976 for leaf_path, leaf_value in _yield_flat_up_to(shallow_subtree,
1192 return [v for _, v in _yield_flat_up_to(shallow_tree, input_tree, is_seq)]
1296 return list(_yield_flat_up_to(shallow_tree, input_tree, is_seq))
1471 path for path, _ in _yield_flat_up_to(shallow_tree, inputs[0], is_seq))
1588 for k, _ in _yield_flat_up_to(nest, nest, is_seq):