Skip to content

Commit

Permalink
last update
Browse files Browse the repository at this point in the history
  • Loading branch information
IssamLaradji committed Aug 26, 2014
1 parent 9ed8d1f commit c2ce21f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/modules/neural_networks_supervised.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ Cross-Entropy loss function, giving a vector of probability estimates
:math:`P(y|x)` per sample :math:`x`::

>>> clf.predict_proba([[2., 2.], [1., 2.]]) # doctest: +ELLIPSIS
array([[ 9.59...e-06, 9.99...e-01],
[ 9.59...e-06, 9.99...e-01]])
array([[ 9.5...e-06, 9.99...e-01],
[ 9.5...e-06, 9.99...e-01]])

:class:`MultilayerPerceptronClassifier` supports multi-class classification by
applying `Softmax <http://en.wikipedia.org/wiki/Softmax_activation_function>`_
Expand Down

0 comments on commit c2ce21f

Please sign in to comment.