returns the output of pytorch tensor's ``__format__`` method.
(self, format_spec)
| 597 | return f"meta{str(self.as_tensor())}" |
| 598 | |
| 599 | def __format__(self, format_spec): |
| 600 | """ |
| 601 | returns the output of pytorch tensor's ``__format__`` method. |
| 602 | """ |
| 603 | return self.as_tensor().__format__(format_spec) |
| 604 | |
| 605 | def print_verbose(self) -> None: |
| 606 | """Verbose print with meta data.""" |