Neuroph

Uses of Class
org.neuroph.core.learning.TrainingElement

Packages that use TrainingElement
org.neuroph.core.learning This package provides base classes for neural network learning algorithms. 
org.neuroph.nnet.learning This package provides implementations of concrete neural network learning algorithms. 
 

Uses of TrainingElement in org.neuroph.core.learning
 

Subclasses of TrainingElement in org.neuroph.core.learning
 class SupervisedTrainingElement
          The SupervisedTrainingElement class represents training element for supervised neural network learning.
 

Fields in org.neuroph.core.learning with type parameters of type TrainingElement
private  java.util.Vector<TrainingElement> TrainingSet.elements
          Collection of training elements
 

Methods in org.neuroph.core.learning that return TrainingElement
 TrainingElement TrainingSet.elementAt(int idx)
          Returns training element at specified index position
 

Methods in org.neuroph.core.learning that return types with arguments of type TrainingElement
 java.util.Enumeration<TrainingElement> TrainingSet.elements()
          Returns Enumeration for iterating training elements collection
 java.util.Iterator<TrainingElement> TrainingSet.iterator()
          Returns Iterator for iterating training elements collection
 java.util.Vector<TrainingElement> TrainingSet.trainingElements()
          Returns training elements collection
 

Methods in org.neuroph.core.learning with parameters of type TrainingElement
 void TrainingSet.addElement(TrainingElement el)
          Adds new training element to this training set
protected  void UnsupervisedLearning.learnPattern(TrainingElement trainingElement)
          Trains network with the pattern from the specified training element
 

Uses of TrainingElement in org.neuroph.nnet.learning
 

Methods in org.neuroph.nnet.learning with parameters of type TrainingElement
private  void KohonenLearning.learnPattern(TrainingElement tE, int neighborhood)
           
 


Neuroph