Skip to content

Commit

Permalink
Fixed bug in auto-restarts for cluster.
Browse files Browse the repository at this point in the history
  • Loading branch information
julianser committed Sep 23, 2016
1 parent f4fe6fc commit a2e01b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion train.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def main(args):
logger.debug("Found model to automatically resume: %s" % resume_filename)
auto_restarting = True
# Setup training to automatically resume training with the model found
args.resume = resume_filename
args.resume = resume_filename + '__auto'
# Disable training from reinitialization any parameters
args.reinitialize_decoder_parameters = False
args.reinitialize_latent_variable_parameters = False
Expand Down

0 comments on commit a2e01b6

Please sign in to comment.