(self, x, args={})
| 57 | |
| 58 | @torch.inference_mode() |
| 59 | def forward(self, x, args={}): |
| 60 | encoder_x = self.encoder(x.to(self.encoder.dtype))['encoded'] |
| 61 | ar_indices = self.ar_sample(encoder_x, args) |
| 62 | decoder_x = self.decoder.decode_from_bottleneck(ar_indices) |
| 63 | x = self.post_process(decoder_x) |
| 64 | return x |
nothing calls this directly
no test coverage detected