(self, x)
| 388 | self.embed_dim = embed_dim |
| 389 | |
| 390 | def encode(self, x): |
| 391 | h = self.encoder(x) |
| 392 | h = self.quant_conv(h) |
| 393 | return h |
| 394 | |
| 395 | def decode(self, h, force_not_quantize=False): |
| 396 | # also go through quantization layer |
nothing calls this directly
no outgoing calls
no test coverage detected