(self, config, weights, biases)
| 364 | class BertSelfOutput(nn.Module): |
| 365 | |
| 366 | def __init__(self, config, weights, biases): |
| 367 | super(BertSelfOutput, self).__init__() |
| 368 | self.dense = nn.Linear(config.hidden_size, config.hidden_size) |
| 369 | self.dense.weight = weights[3] |
| 370 | self.dense.bias = biases[3] |
| 371 | self.LayerNorm = BertLayerNorm(config.hidden_size, eps=1e-12) |
| 372 | self.dropout = nn.Dropout(config.hidden_dropout_prob) |
| 373 | |
| 374 | def forward(self, hidden_states, input_tensor): |
| 375 | hidden_states = self.dense(hidden_states) |
nothing calls this directly
no test coverage detected