(self)
| 63 | nn.init.orthogonal_(self.weight, gain=init_norm) |
| 64 | |
| 65 | def __repr__(self): |
| 66 | return ( |
| 67 | f"Subspace({self.in_features}, {self.out_features}, " |
| 68 | f"normalize={self.normalize}, orthogonalize={self.orthogonalize})" |
| 69 | ) |
| 70 | |
| 71 | def forward( |
| 72 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected