Matrix topology with radius and learning functions
Status: Beta
Brought to you by:
jan_ryba
I'd like to report a bug in WTMLearningFunction class (and possibly other learning function classes) in method changeNeuronWeight.
At line 267:
double[] weightList = networkModel.getNeuron(neuronNumber - 1).getWeight();
and at line 295:
networkModel.getNeuron(neuronNumber).setWeight(weightList);
Line 295 should be:
networkModel.getNeuron(neuronNumber - 1).setWeight(weightList);
getNeuron uses supplied neuronNumber variable decreased by 1 to getWeight() while using supplied value to setWeight();
Logged In: NO
zhere are much heavier bugs...