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

  /external/tensorflow/tensorflow/python/data/util/
nest_test.py 287 flattened_input_tree = nest.flatten_up_to(shallow_tree, input_tree)
288 flattened_shallow_tree = nest.flatten_up_to(shallow_tree, shallow_tree)
294 input_tree_flattened_as_shallow_tree = nest.flatten_up_to(shallow_tree,
305 flattened_input_tree = nest.flatten_up_to(shallow_tree, input_tree)
306 flattened_shallow_tree = nest.flatten_up_to(shallow_tree, shallow_tree)
312 flattened_input_tree = nest.flatten_up_to(shallow_tree, input_tree)
313 flattened_shallow_tree = nest.flatten_up_to(shallow_tree, shallow_tree)
320 flattened_input_tree = nest.flatten_up_to(shallow_tree, input_tree)
321 flattened_shallow_tree = nest.flatten_up_to(shallow_tree, shallow_tree)
327 flattened_input_tree = nest.flatten_up_to(shallow_tree, input_tree
    [all...]
nest.py 394 def flatten_up_to(shallow_tree, input_tree): function
418 flattened_input_tree = flatten_up_to(shallow_tree, input_tree)
419 flattened_shallow_tree = flatten_up_to(shallow_tree, shallow_tree)
430 input_tree_flattened_as_shallow_tree = flatten_up_to(shallow_tree, input_tree)
441 flatten_up_to(0, 0) # Output: [0]
442 flatten_up_to(0, [0, 1, 2]) # Output: [[0, 1, 2]]
443 flatten_up_to([0, 1, 2], 0) # Output: TypeError
444 flatten_up_to([0, 1, 2], [0, 1, 2]) # Output: [0, 1, 2]
535 all_flattened_up_to = [flatten_up_to(shallow_tree, input_tree)
549 "flatten_up_to",
    [all...]
  /external/tensorflow/tensorflow/python/util/
nest_test.py 445 flattened_input_tree = nest.flatten_up_to(shallow_tree, input_tree)
446 flattened_shallow_tree = nest.flatten_up_to(shallow_tree, shallow_tree)
453 input_tree_flattened_as_shallow_tree = nest.flatten_up_to(shallow_tree,
463 input_tree_flattened_as_shallow_tree = nest.flatten_up_to(shallow_tree,
472 input_tree_flattened_as_shallow_tree = nest.flatten_up_to(shallow_tree,
482 input_tree_flattened_as_shallow_tree = nest.flatten_up_to(shallow_tree,
486 input_tree_flattened_as_shallow_tree = nest.flatten_up_to(shallow_tree,
493 input_tree_flattened_as_shallow_tree = nest.flatten_up_to(shallow_tree,
503 flattened_input_tree = nest.flatten_up_to(shallow_tree, input_tree)
504 flattened_shallow_tree = nest.flatten_up_to(shallow_tree, shallow_tree
    [all...]
nest.py 556 def flatten_up_to(shallow_tree, input_tree): function
580 flattened_input_tree = flatten_up_to(shallow_tree, input_tree)
581 flattened_shallow_tree = flatten_up_to(shallow_tree, shallow_tree)
592 input_tree_flattened_as_shallow_tree = flatten_up_to(shallow_tree, input_tree)
603 flatten_up_to(0, 0) # Output: [0]
604 flatten_up_to(0, [0, 1, 2]) # Output: [[0, 1, 2]]
605 flatten_up_to([0, 1, 2], 0) # Output: TypeError
606 flatten_up_to([0, 1, 2], [0, 1, 2]) # Output: [0, 1, 2]
697 all_flattened_up_to = [flatten_up_to(shallow_tree, input_tree)
722 `map_structure_up_to` and `flatten_up_to`
    [all...]
  /external/tensorflow/tensorflow/contrib/data/python/ops/
batching.py 313 flat_new_shapes = nest.flatten_up_to(output_types, output_shapes)
  /external/tensorflow/tensorflow/python/data/ops/
dataset_ops.py 379 nest.flatten_up_to(output_types, values), flattened_types)
    [all...]

Completed in 638 milliseconds