Skip to content

Commit

Permalink
Merge pull request huggingface#286 from hendrycks/patch-1
Browse files Browse the repository at this point in the history
Update activation function docstring
  • Loading branch information
thomwolf authored Feb 17, 2019
2 parents 5faf386 + 434d15d commit 3a2f97d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pytorch_pretrained_bert/modeling.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ def gelu(x):
"""Implementation of the gelu activation function.
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
"""
return x * 0.5 * (1.0 + torch.erf(x / math.sqrt(2.0)))

Expand Down

0 comments on commit 3a2f97d

Please sign in to comment.