Detach the tensor from the computation graph
(self, a)
| 297 | return [self._detach(array) for array in arrays] |
| 298 | |
| 299 | def _detach(self, a): |
| 300 | """Detach the tensor from the computation graph""" |
| 301 | raise NotImplementedError() |
| 302 | |
| 303 | def zeros(self, shape, type_as=None): |
| 304 | r""" |