r"""Returns a new :class:`~.Tensor`, detached from the current graph.
(self)
| 155 | return super().numpy() |
| 156 | |
| 157 | def detach(self): |
| 158 | r"""Returns a new :class:`~.Tensor`, detached from the current graph.""" |
| 159 | return super().detach() |
| 160 | |
| 161 | def _reset(self, other): |
| 162 | if not isinstance(other, _Tensor): |
no outgoing calls
no test coverage detected