Returns the numpy version of a tensor
(self, a)
| 267 | |
| 268 | # convert a tensor to numpy |
| 269 | def _to_numpy(self, a): |
| 270 | """Returns the numpy version of a tensor""" |
| 271 | raise NotImplementedError() |
| 272 | |
| 273 | # convert batch of arrays from numpy |
| 274 | def from_numpy(self, *arrays, type_as=None): |
no outgoing calls
no test coverage detected