From bd5e4280e270c045d14a76b992f655e3f3d8192c Mon Sep 17 00:00:00 2001 From: Olivia Nordquist Date: Mon, 6 Feb 2017 14:41:00 -0800 Subject: making it exactly like the code snippet Change: 146713025 --- tensorflow/g3doc/tutorials/mnist/pros/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/g3doc/tutorials/mnist/pros/index.md b/tensorflow/g3doc/tutorials/mnist/pros/index.md index 8638d6e0ee..7f915f86b7 100644 --- a/tensorflow/g3doc/tutorials/mnist/pros/index.md +++ b/tensorflow/g3doc/tutorials/mnist/pros/index.md @@ -204,7 +204,7 @@ updates to the parameters. Training the model can therefore be accomplished by repeatedly running `train_step`. ```python -for i in range(1000): +for _ in range(1000): batch = mnist.train.next_batch(100) train_step.run(feed_dict={x: batch[0], y_: batch[1]}) ``` -- cgit v1.2.3