Uses of Class
de.htwdd.rosenkoenig.neuro.net.training.TeachingAlgorithm

Packages that use TeachingAlgorithm
de.htwdd.rosenkoenig.neuro.net.training This package contains classes to train neural networks. 
 

Uses of TeachingAlgorithm in de.htwdd.rosenkoenig.neuro.net.training
 

Subclasses of TeachingAlgorithm in de.htwdd.rosenkoenig.neuro.net.training
 class Backpropagation
           Implementation of the backpropagation teaching algorithm for feed forward neural networks.
 

Fields in de.htwdd.rosenkoenig.neuro.net.training declared as TeachingAlgorithm
private  TeachingAlgorithm Trainer.algorithm
          This algorithm is used to train the net.
 

Methods in de.htwdd.rosenkoenig.neuro.net.training that return TeachingAlgorithm
 TeachingAlgorithm Trainer.getAlgorithm()
          Getter of the property algorithm
 

Methods in de.htwdd.rosenkoenig.neuro.net.training with parameters of type TeachingAlgorithm
 void Trainer.setAlgorithm(TeachingAlgorithm algorithm)
          Setter of the property algorithm
 

Constructors in de.htwdd.rosenkoenig.neuro.net.training with parameters of type TeachingAlgorithm
Trainer(FeedForwardNet net, TeachingAlgorithm algorithm)
          Creates a new Trainer with default parameters.