Coerces wrapped data into a numpy array, returning a Variable.
(self)
| 858 | return to_numpy(self._data) |
| 859 | |
| 860 | def as_numpy(self) -> Self: |
| 861 | """Coerces wrapped data into a numpy array, returning a Variable.""" |
| 862 | return self._replace(data=self.to_numpy()) |
| 863 | |
| 864 | def reduce( |
| 865 | self, |