(self, x)
| 31 | self.moving_avg = moving_avg(kernel_size, stride=1) |
| 32 | |
| 33 | def forward(self, x): |
| 34 | moving_mean = self.moving_avg(x) |
| 35 | res = x - moving_mean |
| 36 | return res, moving_mean |
| 37 | |
| 38 | class Model(nn.Module): |
| 39 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected