(self, hidden_states)
| 469 | if isinstance(config.hidden_act, str) else config.hidden_act |
| 470 | |
| 471 | def forward(self, hidden_states): |
| 472 | hidden_states = self.dense(hidden_states) |
| 473 | hidden_states = self.intermediate_act_fn(hidden_states) |
| 474 | return hidden_states |
| 475 | |
| 476 | |
| 477 | class BertOutput(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected