MCPcopy Create free account
hub / github.com/TPCD/DCCL / forward

Method forward

model/attribute_transformer.py:474–477  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

472 self.norm2 = nn.LayerNorm(input_feature_dim)
473
474 def forward(self, x):
475 out = self.flatten(self.pool(self.activation(self.norm1(self.conv_1_1(x)))))
476 out = self.norm2(out)
477 return out
478
479
480class AttributeTransformer8(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected