(self, x)
| 68 | self.moving_avg = moving_avg(kernel_size, stride=1) |
| 69 | |
| 70 | def forward(self, x): |
| 71 | moving_mean = self.moving_avg(x) |
| 72 | res = x - moving_mean |
| 73 | return res, moving_mean |
| 74 | |
| 75 | |
| 76 | class series_decomp_multi(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected