Searched refs:tensor_slicing (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/python/debug/cli/ |
D | command_parser.py | 166 tensor_slicing = in_str[in_str.index("["):] 169 tensor_slicing = "" 171 return tensor_name, tensor_slicing 471 def evaluate_tensor_slice(tensor, tensor_slicing): argument 488 if not validate_slicing_string(tensor_slicing): 491 return tensor[_parse_slices(tensor_slicing)]
|
D | cli_shared.py | 154 tensor_slicing=None, argument 185 if tensor_slicing: 187 value = command_parser.evaluate_tensor_slice(tensor, tensor_slicing) 188 sliced_name = tensor_name + tensor_slicing
|
D | command_parser_test.py | 212 tensor_slicing) = command_parser.parse_tensor_name_with_slicing( 216 self.assertEqual("", tensor_slicing) 220 tensor_slicing) = command_parser.parse_tensor_name_with_slicing( 224 self.assertEqual("[:, 1]", tensor_slicing)
|
D | analyzer_cli.py | 934 tensor_name, tensor_slicing = ( 998 tensor_slicing=tensor_slicing, 1046 tensor_slicing=tensor_slicing,
|
/external/tensorflow/tensorflow/python/debug/wrappers/ |
D | local_cli_wrapper.py | 496 tensor_name, tensor_slicing = ( 518 tensor_slicing=tensor_slicing,
|