aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/training
diff options
context:
space:
mode:
authorGravatar Katherine Wu <kathywu@google.com>2018-08-28 20:50:04 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-28 20:53:28 -0700
commit30a6b56176a9738bbe0a40b24f885503f112ae9f (patch)
treedd1ac446a007a9016c64b6de4862541928aa20ea /tensorflow/python/training
parent8012cf52d8c7e23766ff2a3d89a3028241de50b9 (diff)
Automated rollback of commit 069f808e5c0462819bcd6c73c75491b00cdd42c2
PiperOrigin-RevId: 210656847
Diffstat (limited to 'tensorflow/python/training')
-rw-r--r--tensorflow/python/training/checkpointable/util.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tensorflow/python/training/checkpointable/util.py b/tensorflow/python/training/checkpointable/util.py
index 13dddd37ac..45d217e8b1 100644
--- a/tensorflow/python/training/checkpointable/util.py
+++ b/tensorflow/python/training/checkpointable/util.py
@@ -685,11 +685,6 @@ def _serialize_object_graph(root_checkpointable, saveables_cache):
saveables_cache=saveables_cache)
-def named_saveables(root_checkpointable):
- """Gather list of all SaveableObjects in the Checkpointable object."""
- return _serialize_object_graph(root_checkpointable, None)[0]
-
-
def list_objects(root_checkpointable):
"""Traverse the object graph and list all accessible objects.