(self, x)
| 152 | super().__init__() |
| 153 | self.linear = nn.Linear(in_dim, out_dim) |
| 154 | def forward(self, x): |
| 155 | return self.linear(x) |
| 156 | |
| 157 | class SonarLossWrapper(nn.Module): |
| 158 | def __init__(self, llama_model, forward_proj, reverse_proj, sonar_decoder): |
nothing calls this directly
no outgoing calls
no test coverage detected