aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/learn
diff options
context:
space:
mode:
authorGravatar Sherry Moore <sherrym@google.com>2018-04-24 10:31:17 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-24 10:33:57 -0700
commit55a4a479df8e1fbc8aa726596e6d4591364b3585 (patch)
tree3fac4b5aefe3a051ff330293fcb1da16cfd23929 /tensorflow/contrib/learn
parent9c7e819352581bf5a97509b1fa5dc71dffa26500 (diff)
Added a call in CheckpointSaverHook.after_create_session to always save
checkpoint before the first training step. PiperOrigin-RevId: 194107958
Diffstat (limited to 'tensorflow/contrib/learn')
-rw-r--r--tensorflow/contrib/learn/python/learn/estimators/estimator_test.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tensorflow/contrib/learn/python/learn/estimators/estimator_test.py b/tensorflow/contrib/learn/python/learn/estimators/estimator_test.py
index d81a534b79..9e5aaf3118 100644
--- a/tensorflow/contrib/learn/python/learn/estimators/estimator_test.py
+++ b/tensorflow/contrib/learn/python/learn/estimators/estimator_test.py
@@ -715,7 +715,9 @@ class EstimatorTest(test.TestCase):
ckpt = checkpoint_state_pb2.CheckpointState()
text_format.Merge(checkpoint_file_content, ckpt)
self.assertEqual(ckpt.model_checkpoint_path, 'model.ckpt-5')
- self.assertAllEqual(['model.ckpt-1', 'model.ckpt-5'],
+ # TODO(b/78461127): Please modify tests to not directly rely on names of
+ # checkpoints.
+ self.assertAllEqual(['model.ckpt-0', 'model.ckpt-5'],
ckpt.all_model_checkpoint_paths)
def test_train_save_copy_reload(self):