aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/training/monitored_session.py
diff options
context:
space:
mode:
authorGravatar Dandelion Mané <dandelion@google.com>2017-03-13 12:52:11 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-03-13 14:06:48 -0700
commit32c11fd917f82619f76273f6b83d7e21fb68c173 (patch)
treea9a7b5c01e32b2e079cb939d41fefdf5adc4e9ca /tensorflow/python/training/monitored_session.py
parent7b8e31c58140fe6c6bdd3a0d946b978c2a216702 (diff)
Fix lint issues introduced by my pull from GitHub.
Change: 149985352
Diffstat (limited to 'tensorflow/python/training/monitored_session.py')
-rw-r--r--tensorflow/python/training/monitored_session.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tensorflow/python/training/monitored_session.py b/tensorflow/python/training/monitored_session.py
index fa5d2121ec..b9bf32ef7b 100644
--- a/tensorflow/python/training/monitored_session.py
+++ b/tensorflow/python/training/monitored_session.py
@@ -67,8 +67,8 @@ class Scaffold(object):
The following pieces are directly accessible as attributes of the `Scaffold`
object:
- * `saver`: A `tf.train.Saver` object taking care of saving the variables. Picked
- from and stored into the `SAVERS` collection in the graph by default.
+ * `saver`: A `tf.train.Saver` object taking care of saving the variables.
+ Picked from and stored into the `SAVERS` collection in the graph by default.
* `init_op`: An op to run to initialize the variables. Picked from and
stored into the `INIT_OP` collection in the graph by default.
* `ready_op`: An op to verify that the variables are initialized. Picked
@@ -124,7 +124,8 @@ class Scaffold(object):
local_init_op: Optional op to initialize local variables.
summary_op: Optional op to gather all summaries. Must return a scalar
string tensor containing a serialized `Summary` proto.
- saver: Optional `tf.train.Saver` object to use to save and restore variables.
+ saver: Optional `tf.train.Saver` object to use to save and restore
+ variables.
"""
# NOTE(touts): modifying the init function to be passed the scaffold is a