From 0a8c4d46648dea9082ec8bf04a892c27a6808806 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Thu, 25 Aug 2016 15:00:35 +0000 Subject: [PATCH] more docu --- src/neuron.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/neuron.hxx b/src/neuron.hxx index 5dee845..c852ee7 100644 --- a/src/neuron.hxx +++ b/src/neuron.hxx @@ -98,7 +98,7 @@ second, and so on, until @c Hl+1 contains the weights from layer @c l to the output @c O. - The output vector is then calculatd as: + The output vector is then calculated as: O = I × H1 × H2 × H × Hl+1 @code @@ -106,10 +106,10 @@ const size_type o(2); NeuroNet net; Matrix<1, i> input(1.0, 2.0, 0.0, -1.0); - Matrix<1, o> output = net.propagate(input); + Matrix<1, o> output = net(input); @endcode - @section beuro-backward Back Propagation + @section neuro-backward Back Propagation */