MCPcopy Create free account
hub / github.com/10Ring/LAA-Net / forward

Method forward

models/networks/common.py:44–57  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

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
60class SELayer(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected