(self, x)
| 329 | self.eps = eps |
| 330 | |
| 331 | def encode(self, x): |
| 332 | x = (x - self.mean) / (self.std + self.eps) |
| 333 | return x |
| 334 | |
| 335 | def decode(self, x, sample_idx=None): |
| 336 | x = (x * (self.std + self.eps)) + self.mean |
nothing calls this directly
no outgoing calls
no test coverage detected