(self, x)
| 67 | self.weight = nn.Parameter(torch.rand(n_features, n_features)) |
| 68 | |
| 69 | def forward(self, x): |
| 70 | A = symmetric(self.weight) |
| 71 | return x @ A |
| 72 | |
| 73 | ############################################################################### |
| 74 | # The layer can be then used as a regular linear layer |
nothing calls this directly
no test coverage detected