MCPcopy Create free account
hub / github.com/AIRMEC/HECTOR / forward

Method forward

model.py:131–134  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

129 self.fc_layers = nn.Sequential(*fc_layers)
130
131 def forward(self, x):
132 x = self.embedding(x)
133 x = self.fc_layers(x)
134 return x
135
136class HECTOR(nn.Module):
137 def __init__(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected