MCPcopy Create free account
hub / github.com/FusionBrainLab/SONAR-LLM / __init__

Method __init__

generate.py:28–30  ·  view source on GitHub ↗
(self, in_dim, out_dim)

Source from the content-addressed store, hash-verified

26
27class Projector(nn.Module):
28 def __init__(self, in_dim, out_dim):
29 super().__init__()
30 self.linear = nn.Linear(in_dim, out_dim)
31
32 def forward(self, x):
33 return self.linear(x)

Callers 1

__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected