(self, x)
| 84 | ) |
| 85 | |
| 86 | def forward(self, x): |
| 87 | h = x + self.attention(self.attention_norm(x)) |
| 88 | out = h + self.feed_forward(self.ffn_norm(h)) |
| 89 | return out |
| 90 | |
| 91 | def reset_parameters(self): |
| 92 | self.attention_norm.reset_parameters() |
nothing calls this directly
no outgoing calls
no test coverage detected