Neuroph

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

Packages that use TrainingElement
org.neuroph.core.learning Provides base classes for neural network learning algorithms. 
 

Uses of TrainingElement in org.neuroph.core.learning
 

Subclasses of TrainingElement in org.neuroph.core.learning
 class SupervisedTrainingElement
          Represents training element for supervised learning algorithms.
 

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
 


Neuroph