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

Method forward

model/attribute_classifier.py:74–80  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

72 self.drop = nn.Dropout(drop)
73
74 def forward(self, x):
75 x = self.fc1(x)
76 x = self.act(x)
77 x = self.drop(x)
78 x = self.fc2(x)
79 x = self.drop(x)
80 return x
81
82
83

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected