(self, x)
| 585 | self.out_norm = RMSNorm(d_model) |
| 586 | |
| 587 | def forward(self, x): |
| 588 | x = self.in_norm(x) |
| 589 | for block in self.blocks: |
| 590 | x = block(x) |
| 591 | x = self.out_norm(x) |
| 592 | return x |
| 593 | |
| 594 | |
| 595 | # Token merging and splitting |
nothing calls this directly
no outgoing calls
no test coverage detected