Documentation of 'org.neuroph.nnet.learning.QuickPropagation' Java class
QuickPropagation
org.neuroph.nnet.learning

Class QuickPropagation

    • Constructor Detail

      • QuickPropagation

        public QuickPropagation()
    • Method Detail

      • calculateWeightChanges

        public void calculateWeightChanges(Neuron neuron)
        Description copied from class: LMS
        This method calculates weights changes for the single neuron. It iterates through all neuron's input connections, and calculates/set weight change for each weight using formula deltaWeight = -learningRate * delta * input where delta is a neuron error, a difference between desired/target and actual output for specific neuron neuronError = desiredOutput[i] - actualOutput[i] (see method SuprevisedLearning.calculateOutputError)
        Parameters:
        neuron - neuron to update weights
        See Also:
        LMS.calculateWeightChanges(double[])

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.