(self, x: torch.Tensor)
| 328 | self.register_buffer("bias", bias) |
| 329 | |
| 330 | def forward(self, x: torch.Tensor) -> torch.Tensor: |
| 331 | return F.linear(x, self.weight, self.bias) |
| 332 | |
| 333 | def extra_repr(self) -> str: |
| 334 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected