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
ef28b2c7
"...resnet50_tensorflow.git" did not exist on "4d38b1500dceeb7bf5d62529d4bd5477378d86df"
Commit
ef28b2c7
authored
Mar 18, 2019
by
lukovnikov
Browse files
branches, optim cosine fix
parent
90430ae7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
pytorch_pretrained_bert/optimization.py
pytorch_pretrained_bert/optimization.py
+1
-1
No files found.
pytorch_pretrained_bert/optimization.py
View file @
ef28b2c7
...
...
@@ -26,7 +26,7 @@ logger = logging.getLogger(__name__)
def
warmup_cosine
(
x
,
warmup
=
0.002
):
if
x
<
warmup
:
return
x
/
warmup
x_
=
(
x
-
warmup
)
/
(
1
-
warmup
)
# progress after warmup
x_
=
(
x
-
warmup
)
/
(
1
-
warmup
)
# progress after warmup
-
return
0.5
*
(
1.
+
math
.
cos
(
math
.
pi
*
x_
))
def
warmup_constant
(
x
,
warmup
=
0.002
):
...
...
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