HomeSort by relevance Sort by last modified time
    Searched refs:yield_flat_paths (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/python/util/
nest.py 765 def yield_flat_paths(nest): function
780 >>> list(nest.yield_flat_paths(value))
785 >>> list(nest.yield_flat_paths({'a': [3]}))
787 >>> list(nest.yield_flat_paths({'a': 3}))
804 for sub_path in yield_flat_paths(value):
809 for sub_path in yield_flat_paths(value):
815 for sub_path in yield_flat_paths(value):
826 structure each data element was located. See `nest.yield_flat_paths`
837 flat_paths = yield_flat_paths(structure)
858 "yield_flat_paths",
    [all...]
nest_test.py 649 self.assertEqual(list(nest.yield_flat_paths(inputs)), expected)

Completed in 296 milliseconds