(self)
| 489 | |
| 490 | @property |
| 491 | def spatial_shape(self) -> torch.Size: |
| 492 | spatial_shape = self.get_spatial_cache('shape') |
| 493 | if spatial_shape is None: |
| 494 | spatial_shape = self.__cal_spatial_shape(self.coords) |
| 495 | self.register_spatial_cache('shape', spatial_shape) |
| 496 | return spatial_shape |
| 497 | |
| 498 | @property |
| 499 | def feats(self) -> torch.Tensor: |
nothing calls this directly
no test coverage detected