MCPcopy Create free account
hub / github.com/SooLab/CGFormer / __init__

Method __init__

bert/modeling_bert.py:338–342  ·  view source on GitHub ↗
(self, config)

Source from the content-addressed store, hash-verified

336
337class BertOutput(nn.Module):
338 def __init__(self, config):
339 super().__init__()
340 self.dense = nn.Linear(config.intermediate_size, config.hidden_size)
341 self.LayerNorm = BertLayerNorm(config.hidden_size, eps=config.layer_norm_eps)
342 self.dropout = nn.Dropout(config.hidden_dropout_prob)
343
344 def forward(self, hidden_states, input_tensor):
345 hidden_states = self.dense(hidden_states)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected