Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
chenpangpang
transformers
Commits
51efde54
Commit
51efde54
authored
Mar 09, 2019
by
lukovnikov
Browse files
cos fix
parent
f113a2df
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 @
51efde54
...
...
@@ -69,7 +69,7 @@ class WarmupCosineSchedule(LRSchedule):
return
progress
/
self
.
warmup
else
:
progress
=
(
progress
-
self
.
warmup
)
/
(
1
-
self
.
warmup
)
# progress after warmup
return
0.5
*
(
1.
+
torc
h
.
cos
(
math
.
pi
*
self
.
cycles
*
2
*
progress
))
return
0.5
*
(
1.
+
mat
h
.
cos
(
math
.
pi
*
self
.
cycles
*
2
*
progress
))
class
WarmupConstantSchedule
(
LRSchedule
):
...
...
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