(self, input)
| 61 | self.out_features=out_features |
| 62 | |
| 63 | def forward(self, input): |
| 64 | w= torch._weight_norm(self.weight, self.g, 0) |
| 65 | out=F.linear(input, w, self.bias) |
| 66 | return out |
| 67 | |
| 68 | |
| 69 |
nothing calls this directly
no outgoing calls
no test coverage detected