(self, input)
| 288 | torch.nn.init.zeros_(self.bias) |
| 289 | |
| 290 | def forward(self, input): |
| 291 | return F.layer_norm( |
| 292 | input, self.normalized_shape, self.weight, self.bias, self.eps |
| 293 | ) |
| 294 | |
| 295 | |
| 296 | class TiedLinear(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected