(self, *shape)
| 234 | return self.data.dense() |
| 235 | |
| 236 | def reshape(self, *shape) -> 'SparseTensor': |
| 237 | new_feats = self.feats.reshape(self.feats.shape[0], *shape) |
| 238 | return self.replace(new_feats) |
| 239 | |
| 240 | def unbind(self, dim: int) -> List['SparseTensor']: |
| 241 | return sparse_unbind(self, dim) |
no test coverage detected