Uses of Interface
weka.classifiers.functions.neural.NeuralMethod

Packages that use NeuralMethod
weka.classifiers.functions.neural   
 

Uses of NeuralMethod in weka.classifiers.functions.neural
 

Classes in weka.classifiers.functions.neural that implement NeuralMethod
 class LinearUnit
          This can be used by the neuralnode to perform all it's computations (as a Linear unit).
 class SigmoidUnit
          This can be used by the neuralnode to perform all it's computations (as a sigmoid unit).
 

Fields in weka.classifiers.functions.neural declared as NeuralMethod
private  NeuralMethod NeuralNode.m_methods
          Performs the operations for this node.
 

Methods in weka.classifiers.functions.neural that return NeuralMethod
 NeuralMethod NeuralNode.getMethod()
           
 

Methods in weka.classifiers.functions.neural with parameters of type NeuralMethod
 void NeuralNode.setMethod(NeuralMethod m)
          Set how this node should operate (note that the neural method has no internal state, so the same object can be used by any number of nodes.
 

Constructors in weka.classifiers.functions.neural with parameters of type NeuralMethod
NeuralNode(java.lang.String id, java.util.Random r, NeuralMethod m)