(self, x)
| 473 | nn.init.constant_(m.bias, 0) |
| 474 | |
| 475 | def forward(self, x): |
| 476 | x = self.mlp(x) |
| 477 | x = nn.functional.normalize(x, dim=-1, p=2) |
| 478 | x = self.last_layer(x) |
| 479 | return x |
nothing calls this directly
no outgoing calls
no test coverage detected