(self, x)
| 42 | self.conv5_block = conv_block(self.outplanes//4, self.outplanes//4, kernel_size=5, stride=1, padding=2) |
| 43 | |
| 44 | def forward(self, x): |
| 45 | x1 = self.pw_block(x) |
| 46 | |
| 47 | x2 = self.pw_block(x) |
| 48 | x2 = self.conv3_block(x2) |
| 49 | |
| 50 | x3 = self.pw_block(x) |
| 51 | x3 = self.conv5_block(x3) |
| 52 | |
| 53 | x4 = self.mp_layer(x) |
| 54 | x4 = self.pw_block(x4) |
| 55 | |
| 56 | x = torch.cat((x1, x2, x3, x4), dim=1) |
| 57 | return x |
| 58 | |
| 59 | |
| 60 | class SELayer(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected