(self, tgt)
| 167 | return tgt |
| 168 | |
| 169 | def forward(self, tgt): |
| 170 | if self.normalize_before: |
| 171 | return self.forward_pre(tgt) |
| 172 | return self.forward_post(tgt) |
| 173 | |
| 174 | |
| 175 | def _get_activation_fn(activation): |
nothing calls this directly
no test coverage detected