(self, z: torch.Tensor)
| 62 | super().__init__() |
| 63 | |
| 64 | def forward(self, z: torch.Tensor) -> Tuple[torch.Tensor, dict]: |
| 65 | raise NotImplementedError() |
| 66 | |
| 67 | @abstractmethod |
| 68 | def get_trainable_parameters(self) -> Any: |
nothing calls this directly
no outgoing calls
no test coverage detected