Uses of Class
weka.classifiers.functions.neural.NeuralNode

Packages that use NeuralNode
weka.classifiers.functions.neural   
 

Uses of NeuralNode in weka.classifiers.functions.neural
 

Methods in weka.classifiers.functions.neural with parameters of type NeuralNode
 double SigmoidUnit.outputValue(NeuralNode node)
          This function calculates what the output value should be.
 double SigmoidUnit.errorValue(NeuralNode node)
          This function calculates what the error value should be.
 void SigmoidUnit.updateWeights(NeuralNode node, double learn, double momentum)
          This function will calculate what the change in weights should be and also update them.
 double NeuralMethod.outputValue(NeuralNode node)
          This function calculates what the output value should be.
 double NeuralMethod.errorValue(NeuralNode node)
          This function calculates what the error value should be.
 void NeuralMethod.updateWeights(NeuralNode node, double learn, double momentum)
          This function will calculate what the change in weights should be and also update them.
 double LinearUnit.outputValue(NeuralNode node)
          This function calculates what the output value should be.
 double LinearUnit.errorValue(NeuralNode node)
          This function calculates what the error value should be.
 void LinearUnit.updateWeights(NeuralNode node, double learn, double momentum)
          This function will calculate what the change in weights should be and also update them.