(self, x)
| 356 | self.b = -self.a*mymax + high |
| 357 | |
| 358 | def encode(self, x): |
| 359 | s = x.size() |
| 360 | x = x.view(s[0], -1) |
| 361 | x = self.a*x + self.b |
| 362 | x = x.view(s) |
| 363 | return x |
| 364 | |
| 365 | def decode(self, x): |
| 366 | s = x.size() |
nothing calls this directly
no outgoing calls
no test coverage detected