(self, *args, **kwargs)
| 111 | |
| 112 | @abstractmethod |
| 113 | def encode(self, *args, **kwargs) -> torch.Tensor: |
| 114 | raise NotImplementedError("encode()-method of abstract base class called") |
| 115 | |
| 116 | @abstractmethod |
| 117 | def decode(self, *args, **kwargs) -> torch.Tensor: |
nothing calls this directly
no outgoing calls
no test coverage detected