(self, x)
| 330 | self.b = -self.a*mymax + high |
| 331 | |
| 332 | def encode(self, x): |
| 333 | s = x.size() |
| 334 | x = x.view(s[0], -1) |
| 335 | x = self.a*x + self.b |
| 336 | x = x.view(s) |
| 337 | return x |
| 338 | |
| 339 | def decode(self, x): |
| 340 | s = x.size() |
nothing calls this directly
no outgoing calls
no test coverage detected