File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ follows:
5555.. figure:: images/mlp.png
5656 :align: center
5757
58- Formally, a one-hidden-layer MLP computes a function :math:`f: R^D \rightarrow
58+ Formally, a one-hidden-layer MLP is a function :math:`f: R^D \rightarrow
5959R^L`, where :math:`D` is the size of input vector :math:`x` and :math:`L` is
6060the size of the output vector :math:`f(x)`, such that, in matrix notation:
6161
@@ -132,7 +132,7 @@ to use something else.
132132
133133If you look into theory this class implements the graph that computes
134134the hidden layer value :math:`h(x) = \Phi(x) = s(b^{(1)} + W^{(1)} x)`.
135- If you give this value as input to the ``LogisticRegression`` class,
135+ If you give this graph as input to the ``LogisticRegression`` class,
136136implemented in the previous tutorial :doc:`logreg`, you get the output
137137of the MLP. You can see this in the following short implementation of
138138the ``MLP`` class.
You can’t perform that action at this time.
0 commit comments