(self, latents)
| 599 | return latents |
| 600 | |
| 601 | def vae_decode(self, latents): |
| 602 | if self.latent_format is not None: |
| 603 | latents = self.latent_format.process_out(latents) |
| 604 | return self.vae.decode(latents) |
| 605 | |
| 606 | def configure_adapter(self, adapter_config): |
| 607 | super().configure_adapter(self.diffusion_model, adapter_config) |