(self)
| 735 | |
| 736 | @property |
| 737 | def dtype(self) -> str: |
| 738 | return str(self.tensor.dtype).replace("torch.", "") |
| 739 | |
| 740 | def numpy(self) -> np.ndarray: |
| 741 | return self.tensor.detach().numpy() |
nothing calls this directly
no outgoing calls
no test coverage detected