MCPcopy Create free account
hub / github.com/KohakuBlueleaf/LyCORIS / forward

Method forward

test/wrapper.py:113–117  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

111 self.act = nn.ReLU()
112
113 def forward(self, x):
114 x = self.layer_norm(x)
115 x = self.linear(x)
116 x = self.act(x)
117 return x
118
119
120class FunConvNetwork(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected