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.py382 def _flatten(tensor_list_list): argument
383 return [tensor for tensor_list in tensor_list_list for tensor in tensor_list]
580 def _store_sparse_tensors_join(tensor_list_list, enqueue_many, keep_input): argument
583 tensor_list_list[0], enqueue_many, keep_input)
585 for tensor_list in tensor_list_list[1:]:
591 % (tensor_list_list[0], tensor_list))
637 def _validate_join(tensor_list_list): argument
638 tensor_list_list = [ops.convert_n_to_tensor_or_indexed_slices(tl)
639 for tl in tensor_list_list]
640 if not tensor_list_list:
[all …]