Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/training/
Dinput.py383 def _flatten(tensor_list_list): argument
384 return [tensor for tensor_list in tensor_list_list for tensor in tensor_list]
581 def _store_sparse_tensors_join(tensor_list_list, enqueue_many, keep_input): argument
584 tensor_list_list[0], enqueue_many, keep_input)
586 for tensor_list in tensor_list_list[1:]:
592 % (tensor_list_list[0], tensor_list))
638 def _validate_join(tensor_list_list): argument
639 tensor_list_list = [ops.convert_n_to_tensor_or_indexed_slices(tl)
640 for tl in tensor_list_list]
641 if not tensor_list_list:
[all …]