(self, x)
| 61 | padding=padding, stride=1, groups=out_channels, bias=bias) |
| 62 | |
| 63 | def forward(self, x): |
| 64 | x = self.conv1(x) |
| 65 | x = self.conv2(x) |
| 66 | return x |
| 67 | |
| 68 | class DWConv2d(nn.Module): |
| 69 |
nothing calls this directly
no outgoing calls
no test coverage detected