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

Method __init__

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

Source from the content-addressed store, hash-verified

472
473class BertPredictionHeadTransform(nn.Module):
474 def __init__(self, config):
475 super().__init__()
476 self.dense = nn.Linear(config.hidden_size, config.hidden_size)
477 if isinstance(config.hidden_act, str):
478 self.transform_act_fn = ACT2FN[config.hidden_act]
479 else:
480 self.transform_act_fn = config.hidden_act
481 self.LayerNorm = BertLayerNorm(config.hidden_size, eps=config.layer_norm_eps)
482
483 def forward(self, hidden_states):
484 hidden_states = self.dense(hidden_states)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected