(self, x)
| 170 | self.hsigmoid = Hsigmoid() |
| 171 | |
| 172 | def forward(self, x): |
| 173 | input = x |
| 174 | x = self.avg_pool(x) |
| 175 | x = self.fc(x) |
| 176 | x = self.hsigmoid(x) |
| 177 | return input * x |
| 178 | |
| 179 | |
| 180 | class _OSA_module(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected