(self, *shape)
| 629 | return self.replace(new_feats, new_coords) |
| 630 | |
| 631 | def reshape(self, *shape) -> 'SparseTensor': |
| 632 | new_feats = self.feats.reshape(self.feats.shape[0], *shape) |
| 633 | return self.replace(new_feats) |
| 634 | |
| 635 | def unbind(self, dim: int) -> List['SparseTensor']: |
| 636 | return sparse_unbind(self, dim) |