(self, x)
| 140 | self.norm = nn.LayerNorm(dim) |
| 141 | |
| 142 | def forward(self, x): |
| 143 | x = self.emb(x) |
| 144 | # Post emb norm |
| 145 | x = self.norm(x) |
| 146 | |
| 147 | x = self.transformer(x) |
| 148 | return self.to_logits(x) |
nothing calls this directly
no outgoing calls
no test coverage detected