Skip to content

Commit

Permalink
Fix Docs Typo Tensorflow#21199
Browse files Browse the repository at this point in the history
  • Loading branch information
HughKu committed Aug 8, 2018
1 parent 59f7e80 commit b6bc1a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/core/tutorials/keras/basic_classification.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@
"source": [
"The first layer in this network, `tf.keras.layers.Flatten`, transforms the format of the images from a 2d-array (of 28 by 28 pixels), to a 1d-array of 28 * 28 = 784 pixels. Think of this layer as unstacking rows of pixels in the image and lining them up. This layer has no parameters to learn; it only reformats the data.\n",
"\n",
"After the pixels are flattened, the network consists of a sequence of two `tf.keras.layers.Dense` layers. These are densely-connected, or fully-connected, neural layers. The first `Dense` layer has 128 nodes (or neurons). The second (and last) layer is a 10-node *softmax* layer—this returns an array of 10 probability scores that sum to 1. Each node contains a score that indicates the probability that the current image belongs to one of the 10 digit classes.\n",
"After the pixels are flattened, the network consists of a sequence of two `tf.keras.layers.Dense` layers. These are densely-connected, or fully-connected, neural layers. The first `Dense` layer has 128 nodes (or neurons). The second (and last) layer is a 10-node *softmax* layer—this returns an array of 10 probability scores that sum to 1. Each node contains a score that indicates the probability that the current image belongs to one of the 10 classes.\n",
"\n",
"### Compile the model\n",
"\n",
Expand Down Expand Up @@ -1025,4 +1025,4 @@
]
}
]
}
}

0 comments on commit b6bc1a1

Please sign in to comment.