MCPcopy Create free account
hub / github.com/Vegetebird/GraphMLP / forward

Method forward

model/block/mlp_gcn.py:35–42  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

33 self.drop = nn.Dropout(drop)
34
35 def forward(self, x):
36 x = self.fc1(x)
37 x = self.act(x)
38 x = self.drop(x)
39 x = self.fc2(x)
40 x = self.drop(x)
41
42 return x
43
44
45class Mlp_ln(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected