(self)
| 223 | return self.replace(new_feats) |
| 224 | |
| 225 | def detach(self) -> 'SparseTensor': |
| 226 | new_coords = self.coords.detach() |
| 227 | new_feats = self.feats.detach() |
| 228 | return self.replace(new_feats, new_coords) |
| 229 | |
| 230 | def dense(self) -> torch.Tensor: |
| 231 | if BACKEND == 'torchsparse': |
no test coverage detected