Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
transformers
Commits
e6d106a0
You need to sign in or sign up before continuing.
Commit
e6d106a0
authored
Nov 03, 2018
by
thomwolf
Browse files
comment on gelu function
parent
01b1a053
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modeling_pytorch.py
modeling_pytorch.py
+2
-2
No files found.
modeling_pytorch.py
View file @
e6d106a0
...
@@ -28,8 +28,8 @@ from torch.nn import CrossEntropyLoss
...
@@ -28,8 +28,8 @@ from torch.nn import CrossEntropyLoss
def
gelu
(
x
):
def
gelu
(
x
):
return
x
*
0.5
*
(
1.0
+
torch
.
erf
(
x
/
math
.
sqrt
(
2.0
)))
return
x
*
0.5
*
(
1.0
+
torch
.
erf
(
x
/
math
.
sqrt
(
2.0
)))
# OpenAI GPT gelu version :
#
For information:
OpenAI GPT gelu version
is a bit different
:
#
return
0.5 * x * (1 + torch.tanh(math.sqrt(2 / math.pi) * (x + 0.044715 * torch.pow(x, 3))))
# 0.5 * x * (1 + torch.tanh(math.sqrt(2 / math.pi) * (x + 0.044715 * torch.pow(x, 3))))
class
BertConfig
(
object
):
class
BertConfig
(
object
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment