MCPcopy Create free account
hub / github.com/Xiaobin-Rong/gtcrn / forward

Method forward

gtcrn.py:239–244  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

237 ])
238
239 def forward(self, x):
240 en_outs = []
241 for i in range(len(self.en_convs)):
242 x = self.en_convs[i](x)
243 en_outs.append(x)
244 return x, en_outs
245
246
247class Decoder(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected