MCPcopy Create free account
hub / github.com/alinlab/SelfPatch / forward

Method forward

segmentation/backbones/fast_scnn.py:186–192  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

184 return nn.Sequential(*layers)
185
186 def forward(self, x):
187 x = self.bottleneck1(x)
188 x = self.bottleneck2(x)
189 x = self.bottleneck3(x)
190 x = torch.cat([x, *self.ppm(x)], dim=1)
191 x = self.out(x)
192 return x
193
194
195class FeatureFusionModule(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected