aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/framework
diff options
context:
space:
mode:
authorGravatar Allen Lavoie <allenl@google.com>2018-08-02 15:47:43 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-02 15:51:17 -0700
commit1bf206bc82f600886f1e19c9860f09f18984346b (patch)
treefbd6ee10df16e491142017e96120181b81a72ec5 /tensorflow/contrib/framework
parent6fbbad97e293cc39bde32495e92614c69a9a7896 (diff)
Split checkpoint management utility functions out of saver.py
Pure refactor, in preparation for adding a higher level checkpoint management utility. This utility will also need to work with the Checkpoint proto, and globbing it on to saver.py seems dirty. PiperOrigin-RevId: 207179646
Diffstat (limited to 'tensorflow/contrib/framework')
-rw-r--r--tensorflow/contrib/framework/python/framework/checkpoint_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/contrib/framework/python/framework/checkpoint_utils.py b/tensorflow/contrib/framework/python/framework/checkpoint_utils.py
index 9e356dd965..e7184a01fb 100644
--- a/tensorflow/contrib/framework/python/framework/checkpoint_utils.py
+++ b/tensorflow/contrib/framework/python/framework/checkpoint_utils.py
@@ -27,7 +27,7 @@ from tensorflow.python.ops import variable_scope as vs
from tensorflow.python.ops import variables
from tensorflow.python.platform import gfile
from tensorflow.python.platform import tf_logging as logging
-from tensorflow.python.training import saver
+from tensorflow.python.training import checkpoint_management
from tensorflow.python.training import training as train
__all__ = [
@@ -40,7 +40,7 @@ __all__ = [
def _get_checkpoint_filename(filepattern):
"""Returns checkpoint filename given directory or specific filepattern."""
if gfile.IsDirectory(filepattern):
- return saver.latest_checkpoint(filepattern)
+ return checkpoint_management.latest_checkpoint(filepattern)
return filepattern