(self, x)
| 15 | nn.init.xavier_uniform_(self.linear_layer.weight, gain=nn.init.calculate_gain(w_init_gain)) |
| 16 | |
| 17 | def forward(self, x): |
| 18 | return self.linear_layer(x) |
| 19 | |
| 20 | |
| 21 | class LayerNorm(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected