aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/docker/notebooks/3_mnist_from_scratch.ipynb
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/tools/docker/notebooks/3_mnist_from_scratch.ipynb')
-rw-r--r--tensorflow/tools/docker/notebooks/3_mnist_from_scratch.ipynb4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/tools/docker/notebooks/3_mnist_from_scratch.ipynb b/tensorflow/tools/docker/notebooks/3_mnist_from_scratch.ipynb
index 9bb889e41a..8f8bedbdfe 100644
--- a/tensorflow/tools/docker/notebooks/3_mnist_from_scratch.ipynb
+++ b/tensorflow/tools/docker/notebooks/3_mnist_from_scratch.ipynb
@@ -1273,7 +1273,7 @@
"batch_labels = train_labels[:BATCH_SIZE]\n",
"\n",
"# This dictionary maps the batch data (as a numpy array) to the\n",
- "# node in the graph is should be fed to.\n",
+ "# node in the graph it should be fed to.\n",
"feed_dict = {train_data_node: batch_data,\n",
" train_labels_node: batch_labels}\n",
"\n",
@@ -1680,7 +1680,7 @@
" batch_data = train_data[offset:(offset + BATCH_SIZE), :, :, :]\n",
" batch_labels = train_labels[offset:(offset + BATCH_SIZE)]\n",
" # This dictionary maps the batch data (as a numpy array) to the\n",
- " # node in the graph is should be fed to.\n",
+ " # node in the graph it should be fed to.\n",
" feed_dict = {train_data_node: batch_data,\n",
" train_labels_node: batch_labels}\n",
" # Run the graph and fetch some of the nodes.\n",