MLP* init method implemented but does not work. Change to your favourite word on line 26 of FluidMLP.sc to check it works

nix
Pierre Alexandre Tremblay 6 years ago
parent fac4beae25
commit ed4f0641c5

@ -23,8 +23,8 @@ FluidBaseMLP : FluidDataClient {
]) ])
} }
reset{ |action| init{ |action|
this.prSendMsg(\reset,action:action); this.prSendMsg(\init,action:action);
} }
} }

@ -76,6 +76,11 @@ Input point
ARGUMENT:: action ARGUMENT:: action
A function to run when complete A function to run when complete
METHOD:: init
This will erase all the learning done in the neural network.
ARGUMENT:: action
A function to run when complete
EXAMPLES:: EXAMPLES::

@ -86,6 +86,12 @@ Layer whose output to return.
ARGUMENT:: action ARGUMENT:: action
A function to run when complete A function to run when complete
METHOD:: init
This will erase all the learning done in the neural network.
ARGUMENT:: action
A function to run when complete
EXAMPLES:: EXAMPLES::
code:: code::

Loading…
Cancel
Save