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
63ed224b
Commit
63ed224b
authored
Oct 02, 2019
by
Santiago Castro
Committed by
Lysandre Debut
Oct 02, 2019
Browse files
initialy -> initially
parent
391db836
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
transformers/modeling_bert.py
transformers/modeling_bert.py
+1
-1
transformers/modeling_tf_bert.py
transformers/modeling_tf_bert.py
+1
-1
transformers/modeling_tf_distilbert.py
transformers/modeling_tf_distilbert.py
+1
-1
transformers/modeling_tf_xlm.py
transformers/modeling_tf_xlm.py
+1
-1
No files found.
transformers/modeling_bert.py
View file @
63ed224b
...
@@ -118,7 +118,7 @@ def load_tf_weights_in_bert(model, config, tf_checkpoint_path):
...
@@ -118,7 +118,7 @@ def load_tf_weights_in_bert(model, config, tf_checkpoint_path):
def
gelu
(
x
):
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 initial
l
y created.
For information: OpenAI GPT's gelu is slightly different (and gives slightly different results):
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))))
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
Also see https://arxiv.org/abs/1606.08415
...
...
transformers/modeling_tf_bert.py
View file @
63ed224b
...
@@ -62,7 +62,7 @@ def load_bert_pt_weights_in_tf2(tf_model, pytorch_checkpoint_path):
...
@@ -62,7 +62,7 @@ def load_bert_pt_weights_in_tf2(tf_model, pytorch_checkpoint_path):
def
gelu
(
x
):
def
gelu
(
x
):
""" Gaussian Error Linear Unit.
""" Gaussian Error Linear Unit.
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 initial
l
y created.
For information: OpenAI GPT's gelu is slightly different (and gives slightly different results):
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))))
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
Also see https://arxiv.org/abs/1606.08415
...
...
transformers/modeling_tf_distilbert.py
View file @
63ed224b
...
@@ -45,7 +45,7 @@ TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_MAP = {
...
@@ -45,7 +45,7 @@ TF_DISTILBERT_PRETRAINED_MODEL_ARCHIVE_MAP = {
### UTILS AND BUILDING BLOCKS OF THE ARCHITECTURE ###
### UTILS AND BUILDING BLOCKS OF THE ARCHITECTURE ###
def
gelu
(
x
):
def
gelu
(
x
):
""" Gaussian Error Linear Unit.
""" Gaussian Error Linear Unit.
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 initial
l
y created.
For information: OpenAI GPT's gelu is slightly different (and gives slightly different results):
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))))
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
Also see https://arxiv.org/abs/1606.08415
...
...
transformers/modeling_tf_xlm.py
View file @
63ed224b
...
@@ -69,7 +69,7 @@ def create_sinusoidal_embeddings(n_pos, dim, out):
...
@@ -69,7 +69,7 @@ def create_sinusoidal_embeddings(n_pos, dim, out):
def
gelu
(
x
):
def
gelu
(
x
):
""" Gaussian Error Linear Unit.
""" Gaussian Error Linear Unit.
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 initial
l
y created.
For information: OpenAI GPT's gelu is slightly different (and gives slightly different results):
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))))
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
Also see https://arxiv.org/abs/1606.08415
...
...
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