aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Morelli <morellid@users.sourceforge.net>2005-05-19 16:42:17 +0000
committerDavide Morelli <morellid@users.sourceforge.net>2005-05-19 16:42:17 +0000
commitbcd05dad0d74950486845bd52472b4c22fcd7721 (patch)
treec2fb43ec4591fb742f279f1b557fdf59eef230f6
parent9d75491800ef2104efc6498dd47dfd5a2f3a0392 (diff)
correcting typos
svn path=/trunk/externals/ann/; revision=3035
-rwxr-xr-xhelps/ann_mlp-manual.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/helps/ann_mlp-manual.txt b/helps/ann_mlp-manual.txt
index d137744..f5b6db3 100755
--- a/helps/ann_mlp-manual.txt
+++ b/helps/ann_mlp-manual.txt
@@ -49,7 +49,7 @@ OUTPUTS:
Each "meaning" you want your ANN to detect should have its own output.
Notice ann/examples/ann_mlp_example2:
"Calm" and "chaos" have their outputs even if they are related.
-I could have set only 1 output = for calm and 1 for chaos.
+I could have set only 1 output 0 for calm and 1 for chaos.
But having separated outputs I can see if my ANN has been trained well or
not, but also could be that a situation is neither calm nor chaotic, or
somehow calm AND chaotic..
@@ -57,8 +57,8 @@ somehow calm AND chaotic..
-----------TRAINING ON THE FLY:
It is much easier to train the ANN on the fly rather than using a train
file.
-To train on the fly you simply must pass a list with [inputs + expected
-outputs(
+To train on the fly you simply must pass a list with
+[inputs + expected outputs(
If you have 3 inputs and 2 outputs then you must pass a list with 5 floats
E.g. You want to train a ANN for a simple logical function: OR
You build a ann_mlp with 2 inputs and 1 output
@@ -69,7 +69,7 @@ You pass lists like
|0 1 1( inputs are 0 1 output is 1
And so on.. Repeating until MSE is low enough
-MSE tells you the general error the ANN currently have with the inputs and
+MSE tells you the general error the ANN currently has with the inputs and
outputs you are giving
When you are ready set |run(
@@ -80,7 +80,7 @@ Etc..
The left outlet of ann_mlp will start sending lists of float, in this case a
list with only 1 float
------------PUTTING ALL TOGETHER:
+-----------PUTTING IT TOGETHER:
1) Create a ANN passing ann_mlp a message with num_inputs and num_outputs
E.g. (the simple ann for logical function OR)
@@ -97,7 +97,7 @@ E.g. (the simple ann for logical function OR)
|0 0 0(
|
[ann_mlp]
-(repeat at will using different inputs until mse is low - right outlet)
+(repeat at will using different inputs until mse is low, see right outlet)
4) set run mode
|run(
@@ -128,8 +128,8 @@ Or as argument
For a more in-depth sight over technical issues:
http://fann.sourceforge.net/report/report.html
-See fann manual for details on advanced params (activation functions,
-training params, etc..)
+See fann manual for details on advanced params
+(activation functions,training params, etc..)
http://fann.sourceforge.net/
-----------