Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/debug/cli/
Dcommand_parser.py166 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)]
Dcli_shared.py154 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
Dcommand_parser_test.py212 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)
Dstepper_cli.py528 tensor_name, tensor_slicing = (
551 tensor_slicing=tensor_slicing,
Danalyzer_cli.py935 tensor_name, tensor_slicing = (
999 tensor_slicing=tensor_slicing,
1047 tensor_slicing=tensor_slicing,
/external/tensorflow/tensorflow/python/debug/wrappers/
Dlocal_cli_wrapper.py496 tensor_name, tensor_slicing = (
518 tensor_slicing=tensor_slicing,