Re: Problems with Rprop-Algorithm in batchman-mode

(Që…ð@ÄØð@ÄÔ)
Mon, 21 Jul 1997 17:17:37 +0300

> Trying to start the training of a neural net by Rprop instead of
> Std_Backpropagation caused the following problem: Although I've
> chosen the default parameters of the manual, there was just no
> training taking place by Rprop (Training took place when Rprop was
> replaced by Std_Backpropagation in the batchfile).

Std_Backpropagation learning function needs 2 parameters i.e 
setLearnFunc("Std_Backpropagation", 0.05, 0.0)

while Rprop needs 3 parameters i.e. setLearnFunc("Rprop",0.05,40.0,4.0)
If you want to use the default parameters with Rprop, try the following
:
setLearnFunc("Rprop",0.0,0.0,0.0). 

--Voula Sanida