Encode the batch into a single latent vector.
(self, batch: AttrDict, options: Optional[AttrDict] = None)
| 68 | |
| 69 | @abstractmethod |
| 70 | def encode_to_vector(self, batch: AttrDict, options: Optional[AttrDict] = None) -> torch.Tensor: |
| 71 | """ |
| 72 | Encode the batch into a single latent vector. |
| 73 | """ |
| 74 | |
| 75 | def bottleneck_to_params( |
| 76 | self, vector: torch.Tensor, options: Optional[AttrDict] = None |
no outgoing calls
no test coverage detected