(self, latent)
| 526 | return self.latent_from_data(x) |
| 527 | |
| 528 | def unprocess(self, latent): |
| 529 | return self.data_from_latent(latent) |
| 530 | |
| 531 | def forward(self, audio_input): |
| 532 | x = self.encode(audio_input) |
nothing calls this directly
no test coverage detected