(self, x)
| 74 | dw_act_cfg=self.dw_act_cfg) |
| 75 | |
| 76 | def forward(self, x): |
| 77 | x = self.conv(x) |
| 78 | x = self.dsconv1(x) |
| 79 | x = self.dsconv2(x) |
| 80 | return x |
| 81 | |
| 82 | |
| 83 | class GlobalFeatureExtractor(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected