MCPcopy Create free account
hub / github.com/Sin3DM/Sin3DM / forward

Method forward

src/encoding/blocks.py:59–62  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

57 self.layers = nn.Sequential(*layer_list)
58
59 def forward(self, x):
60 if self.posenc > 0:
61 x = self.PE(x)
62 return self.layers(x)
63
64
65class DecoderMLPSkipConcat(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected