initialy -> initially

This commit is contained in:
Santiago Castro
2019-10-02 11:02:08 -04:00
committed by Lysandre Debut
parent 391db836ab
commit 63ed224b7c
4 changed files with 4 additions and 4 deletions

View File

@@ -118,7 +118,7 @@ def load_tf_weights_in_bert(model, config, tf_checkpoint_path):
def gelu(x):
""" Original Implementation of the gelu activation function in Google Bert repo when initialy created.
""" Original Implementation of the gelu activation function in Google Bert repo when initially created.
For information: OpenAI GPT's gelu is slightly different (and gives slightly different results):
0.5 * x * (1 + torch.tanh(math.sqrt(2 / math.pi) * (x + 0.044715 * torch.pow(x, 3))))
Also see https://arxiv.org/abs/1606.08415