MCPcopy
hub / github.com/deepspeedai/DeepSpeed / __init__

Method __init__

tests/unit/modeling.py:366–372  ·  view source on GitHub ↗
(self, config, weights, biases)

Source from the content-addressed store, hash-verified

364class 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)

Callers

nothing calls this directly

Calls 2

BertLayerNormClass · 0.70
__init__Method · 0.45

Tested by

no test coverage detected