Make minor style fix to eager guide (spacing between =).

PiperOrigin-RevId: 208660857
This commit is contained in:
Dustin Tran 2018-08-14 09:39:38 -07:00 committed by TensorFlower Gardener
parent b03f732b3f
commit 01267485b6

View File

@ -568,9 +568,8 @@ inserted during model construction. For example, to record summaries once every
100 global steps:
```py
global_step = tf.train.get_or_create_global_step()
writer = tf.contrib.summary.create_file_writer(logdir)
global_step=tf.train.get_or_create_global_step() # return global step var
writer.set_as_default()
for _ in range(iterations):