(self, x)
| 120 | act_cfg=None), nn.Sigmoid()) |
| 121 | |
| 122 | def forward(self, x): |
| 123 | x = self.conv_layer(x) |
| 124 | x_atten = self.atten_conv_layer(x) |
| 125 | x_out = x * x_atten |
| 126 | return x_out |
| 127 | |
| 128 | |
| 129 | class ContextPath(BaseModule): |
nothing calls this directly
no outgoing calls
no test coverage detected