Hi, Thanks for this cool work! I noticed that your code did not use commit loss, ```Python def forward(self, x): e = self.encoder(x) quantized, _, _ = self.quantizer(e) o = self.decoder(quantized) return o ``` Why do this?