Uses of Class
classifier.nn.Network

Packages that use Network
classifier   
classifier.nn   
 

Uses of Network in classifier
 

Methods in classifier that return Network
 Network NNClassifier.getNetwork()
           
 

Methods in classifier with parameters of type Network
 void NNClassifier.setNetwork(Network net)
           
 

Constructors in classifier with parameters of type Network
NNClassifier(Network net)
           
 

Uses of Network in classifier.nn
 

Methods in classifier.nn that return Network
 Network BackPropagation.getNetwork()
           
 Network BackPropagation.train(TrainingSetSV ts, errorCondition err_test)
           
 

Methods in classifier.nn with parameters of type Network
protected  LinkTo Node.getLinkTo(Network net, Neuron n)
           
protected  void Node.removeLinkTo(Network net, Neuron n)
           
 void Neuron.addLinkFrom(Network net, int layer, int numNode, double weight)
           
 void Neuron.removeLinkFrom(Network net, int numLink)
           
 void NetworkMaker.make(Network net)
           
 java.lang.Object[] NetworkEngine.run(Network net, java.lang.Object[] input)
           
 void MultiLayerMaker.make(Network net)
           
 java.lang.Object[] MultiLayerEngine.run(Network net, java.lang.Object[] input)
           
protected  Node LinkTo.getNodeTo(Network net)
           
 Node LinkFrom.getNodeFrom(Network net)
           
 boolean errorCondition.check(Network t1, TrainingSetSV t2)
           
 

Constructors in classifier.nn with parameters of type Network
BackPropagation(Network net)