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

Method __init__

example/standalone_example.py:19–23  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

17 """
18
19 def __init__(self):
20 super().__init__()
21 self.test_1 = nn.Linear(784, 2048)
22 self.te_2st = nn.Linear(2048, 784)
23 self._3test = nn.Linear(784, 10)
24
25 def forward(self, x):
26 h = self.test_1(x)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected