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
OpenDAS
Fairseq
Commits
6a7c8d0d
"docs/en/vscode:/vscode.git/clone" did not exist on "57ba4811f147a6ae721db58bd988a8dee6c284b3"
Commit
6a7c8d0d
authored
Apr 09, 2018
by
alexeib
Committed by
Myle Ott
Jun 15, 2018
Browse files
address comments
parent
fe54ea54
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
fairseq/trainer.py
fairseq/trainer.py
+2
-2
No files found.
fairseq/trainer.py
View file @
6a7c8d0d
...
...
@@ -57,13 +57,13 @@ class Trainer(object):
self
.
_max_bsz_seen
=
0
self
.
_num_updates
=
0
self
.
_optim_history
=
None
def
save_checkpoint
(
self
,
filename
,
extra_state
):
"""Save all training state in a checkpoint file."""
if
distributed_utils
.
is_master
(
self
.
args
):
# only save one checkpoint
optim_history
=
self
.
_optim_history
if
hasattr
(
self
,
'_optim_history'
)
else
None
utils
.
save_state
(
filename
,
self
.
args
,
self
.
model
,
self
.
criterion
,
self
.
optimizer
,
self
.
lr_scheduler
,
self
.
_num_updates
,
optim_history
,
extra_state
)
self
.
lr_scheduler
,
self
.
_num_updates
,
self
.
_
optim_history
,
extra_state
)
def
load_checkpoint
(
self
,
filename
):
"""Load all training state from a checkpoint file."""
...
...
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