Prints a representation of the tensor. Prepends "meta" to ``torch.Tensor.__repr__``. Use ``print_verbose`` for associated metadata.
(self)
| 581 | return img |
| 582 | |
| 583 | def __repr__(self): # type: ignore[override] |
| 584 | """ |
| 585 | Prints a representation of the tensor. |
| 586 | Prepends "meta" to ``torch.Tensor.__repr__``. |
| 587 | Use ``print_verbose`` for associated metadata. |
| 588 | """ |
| 589 | return f"meta{self.as_tensor().__repr__()}" |
| 590 | |
| 591 | def __str__(self): |
| 592 | """ |