MCPcopy Create free account
hub / github.com/DIVE128/DMVSNet / forward

Method forward

networks/module.py:267–271  ·  view source on GitHub ↗
(self, x_pre, x)

Source from the content-addressed store, hash-verified

265 # self.init_weights(init_method)
266
267 def forward(self, x_pre, x):
268 x = self.deconv(x)
269 x = torch.cat((x, x_pre), dim=1)
270 x = self.conv(x)
271 return x
272
273
274class FeatureNet(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected