Merge pull request #2346 from mozilla/save-flags
Save flag values next to checkpoints (Fixes #2345)
This commit is contained in:
commit
9c92f909b3
@ -471,6 +471,13 @@ def train():
|
|||||||
best_dev_path = os.path.join(FLAGS.checkpoint_dir, 'best_dev')
|
best_dev_path = os.path.join(FLAGS.checkpoint_dir, 'best_dev')
|
||||||
best_dev_filename = 'best_dev_checkpoint'
|
best_dev_filename = 'best_dev_checkpoint'
|
||||||
|
|
||||||
|
# Save flags next to checkpoints
|
||||||
|
os.makedirs(FLAGS.checkpoint_dir, exist_ok=True)
|
||||||
|
|
||||||
|
flags_file = os.path.join(FLAGS.checkpoint_dir, 'flags.txt')
|
||||||
|
with open(flags_file, 'w') as fout:
|
||||||
|
fout.write(FLAGS.flags_into_string())
|
||||||
|
|
||||||
initializer = tfv1.global_variables_initializer()
|
initializer = tfv1.global_variables_initializer()
|
||||||
|
|
||||||
with tfv1.Session(config=Config.session_config) as session:
|
with tfv1.Session(config=Config.session_config) as session:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user