Returns string representation of Tensor. Parameters ---------- show_data : bool, optional Access and format the underlying data, by default True
(self, show_data=True)
| 29 | |
| 30 | |
| 31 | def _tensor_to_string(self, show_data=True): |
| 32 | """Returns string representation of Tensor. |
| 33 | |
| 34 | Parameters |
| 35 | ---------- |
| 36 | show_data : bool, optional |
| 37 | Access and format the underlying data, by default True |
| 38 | """ |
| 39 | return format_tensor(self, show_data=show_data, adapter=PipelineTensorAdapter()) |
| 40 | |
| 41 | |
| 42 | def _tensorlist_to_string(self, show_data=True, indent=""): |
nothing calls this directly
no test coverage detected