Fix documentation in supervisor.

Change: 155140112
This commit is contained in:
Yutaka Leon 2017-05-04 15:09:27 -08:00 committed by TensorFlower Gardener
parent 4c992d9d6d
commit 7ff4837464

View File

@ -362,8 +362,8 @@ following keyword arguments to the `Supervisor()` constructor:
If not specified, the supervisor uses the first op in the If not specified, the supervisor uses the first op in the
`tf.GraphKeys.LOCAL_INIT_OP` collection. If the collection is empty the `tf.GraphKeys.LOCAL_INIT_OP` collection. If the collection is empty the
supervisor adds an op to initialize all the tables and local variables in supervisor adds an op to initialize all the tables and local variables in
the graph by calling `tf.initialize_all_tables()` and the graph by calling `tf.tables_initializer()` and
`tf.initialize_all_local_variables()`. `tf.local_variables_initializer()`.
Pass `None` to not use a local init op. Pass `None` to not use a local init op.