(self)
| 331 | return F.linear(x, self.weight, self.bias) |
| 332 | |
| 333 | def extra_repr(self) -> str: |
| 334 | return ( |
| 335 | f"in_features={self.in_features}, " |
| 336 | f"out_features={self.out_features}, " |
| 337 | f"bias={self.bias is not None}" |
| 338 | ) |
| 339 | |
| 340 | |
| 341 | def _init_by_depth(module: nn.Module, depth: int) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected