(self, hidden_states)
| 329 | self.intermediate_act_fn = config.hidden_act |
| 330 | |
| 331 | def forward(self, hidden_states): |
| 332 | hidden_states = self.dense(hidden_states) |
| 333 | hidden_states = self.intermediate_act_fn(hidden_states) |
| 334 | return hidden_states |
| 335 | |
| 336 | |
| 337 | class BertOutput(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected