(self, x)
| 353 | act_cfg=act_cfg) |
| 354 | |
| 355 | def forward(self, x): |
| 356 | identity = x |
| 357 | x = self.gap(x) |
| 358 | x = self.conv_gap(x) |
| 359 | x = identity + x |
| 360 | x = self.conv_last(x) |
| 361 | return x |
| 362 | |
| 363 | |
| 364 | class SemanticBranch(BaseModule): |
nothing calls this directly
no outgoing calls
no test coverage detected