Name of the tensor watched by the debug op. Returns: (`str`) `Tensor` name, in the form of `node_name`:`output_slot`
(self)
| 416 | |
| 417 | @property |
| 418 | def tensor_name(self): |
| 419 | """Name of the tensor watched by the debug op. |
| 420 | |
| 421 | Returns: |
| 422 | (`str`) `Tensor` name, in the form of `node_name`:`output_slot` |
| 423 | """ |
| 424 | |
| 425 | return _get_tensor_name(self.node_name, self.output_slot) |
| 426 | |
| 427 | @property |
| 428 | def watch_key(self): |
nothing calls this directly
no test coverage detected