Get a reasonable default number of query points for the model. In some cases, this might be the only supported size.
(self)
| 19 | @property |
| 20 | @abstractmethod |
| 21 | def default_batch_size(self) -> int: |
| 22 | """ |
| 23 | Get a reasonable default number of query points for the model. |
| 24 | In some cases, this might be the only supported size. |
| 25 | """ |
| 26 | |
| 27 | @abstractmethod |
| 28 | def encode_point_clouds(self, point_clouds: torch.Tensor) -> Dict[str, torch.Tensor]: |
nothing calls this directly
no outgoing calls
no test coverage detected