Export to GitHub

peach - issue #2

Wrong word in Basic Neural Network Manipulation page of tutorial


Posted on Jul 3, 2011 by Swift Ox

In the fifth paragraph "of peach/doc/build/html/tutorial/basic-neural-network.html" is written "The network we are trying to build has 2 input neurons, 2 hidden neurons and 1 input neuron." when it should be "... 1 output neuron". Also, looks like the link at the index page (peach/doc/build/html/index.html) "Module Index", at the bottom of the page, is broken.

Comment #1

Posted on Jul 4, 2011 by Quick Bear

diff -r 5c7e104c201d doc/source/tutorial/basic-neural-network.rst --- a/doc/source/tutorial/basic-neural-network.rst Sun Jul 03 22:40:33 2011 -0300 +++ b/doc/source/tutorial/basic-neural-network.rst Sun Jul 03 22:43:30 2011 -0300 @@ -27,7 +27,7 @@ main namespace.

The network we are trying to build has 2 input neurons, 2 hidden neurons and 1 -input neuron. We create a new MLP by instantiating the FeedForward class, as +output neuron. We create a new MLP by instantiating the FeedForward class, as below:

nn = FeedForward((2, 2, 1), Sigmoid, BackPropagation)

Status: Fixed

Labels:
Type-Defect Priority-Medium