Encode input image into multi-resolution encodings.
(self, image: torch.Tensor)
| 18 | |
| 19 | @abc.abstractmethod |
| 20 | def forward(self, image: torch.Tensor) -> list[torch.Tensor]: |
| 21 | """Encode input image into multi-resolution encodings.""" |
| 22 | |
| 23 | def internal_resolution(self) -> int: |
| 24 | """Internal resolution of the encoder.""" |
nothing calls this directly
no outgoing calls
no test coverage detected