Watch key identities a debug watch on a tensor. Returns: (`str`) A watch key, in the form of `tensor_name`:`debug_op`.
(self)
| 426 | |
| 427 | @property |
| 428 | def watch_key(self): |
| 429 | """Watch key identities a debug watch on a tensor. |
| 430 | |
| 431 | Returns: |
| 432 | (`str`) A watch key, in the form of `tensor_name`:`debug_op`. |
| 433 | """ |
| 434 | |
| 435 | return _get_tensor_watch_key(self.node_name, self.output_slot, |
| 436 | self.debug_op) |
| 437 | |
| 438 | @property |
| 439 | def file_path(self): |
nothing calls this directly
no test coverage detected