You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/gettingstarted.txt
+12-8Lines changed: 12 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,10 @@ MNIST Dataset
27
27
28
28
The `MNIST <http://yann.lecun.com/exdb/mnist>`_ dataset consists of handwritten
29
29
digit images and it is divided in 60 000 examples for the training set and
30
-
10 000 examples for testing. All examples have been size-normalized and
30
+
10 000 examples for testing. In many papers as well as in this tutorial, the
31
+
official training set of 60 000 is divided into an actual training set of 50 000
32
+
examples and 10 000 validation examples (for selecting hyper-parameters like
33
+
learning rate and size of the model). All digit images have been size-normalized and
31
34
centered in a fixed size image of 28 x 28 pixels. In the original dataset
32
35
each pixel of the image is represented by a value between 0 and 255, where
33
36
0 is black, 255 is white and anything in between is a different shade of grey.
@@ -150,7 +153,7 @@ List of Symbols and acronyms
150
153
151
154
* :math:`D`: number of input dimensions.
152
155
* :math:`D_h^{(i)}`: number of hidden units in the :math:`i`-th layer.
153
-
* :math:`f_{\theta}(x)`, :math:`f(x)`: prediction function of a model :math:`P(Y|x,\theta)`, defined as :math:`argmax_k P(Y=k|x,\theta)`.
156
+
* :math:`f_{\theta}(x)`, :math:`f(x)`: classification function associated with a model :math:`P(Y|x,\theta)`, defined as :math:`argmax_k P(Y=k|x,\theta)`.
154
157
Note that we will often drop the :math:`\theta` subscript.
0 commit comments