(self, x)
| 36 | self.sigmoid = Sigmoid() |
| 37 | |
| 38 | def forward(self, x): |
| 39 | module_input = x |
| 40 | x = self.avg_pool(x) |
| 41 | x = self.fc1(x) |
| 42 | x = self.relu(x) |
| 43 | x = self.fc2(x) |
| 44 | x = self.sigmoid(x) |
| 45 | |
| 46 | return module_input * x |
| 47 | |
| 48 | |
| 49 | class bottleneck_IR(Module): |
nothing calls this directly
no outgoing calls
no test coverage detected