(self, x)
| 162 | merge_pre_bn(self.conv1, pre_norm) |
| 163 | |
| 164 | def forward(self, x): |
| 165 | x = self.conv1(x) |
| 166 | x = self.act(x) |
| 167 | x = self.drop(x) |
| 168 | x = self.conv2(x) |
| 169 | x = self.drop(x) |
| 170 | return x |
| 171 | |
| 172 | |
| 173 | class NCB(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected