Uses of Class
de.htwdd.rosenkoenig.neuro.net.FeedForwardNet

Packages that use FeedForwardNet
de.htwdd.rosenkoenig.neuro.net.examples This package contains a number of examples to demonstrate the use of the different neural network classes. 
de.htwdd.rosenkoenig.neuro.net.training This package contains classes to train neural networks. 
 

Uses of FeedForwardNet in de.htwdd.rosenkoenig.neuro.net.examples
 

Methods in de.htwdd.rosenkoenig.neuro.net.examples with parameters of type FeedForwardNet
private static void XORExample.present(FeedForwardNet net, java.util.List<Pattern> patterns)
           
private static void Benchmark.present(FeedForwardNet net, java.util.List<Pattern> patterns)
           
private static void BankExample.present(FeedForwardNet net, java.util.List<Pattern> patterns)
           
 

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

Fields in de.htwdd.rosenkoenig.neuro.net.training declared as FeedForwardNet
private  FeedForwardNet Trainer.net
          The net that will be trained.
 

Methods in de.htwdd.rosenkoenig.neuro.net.training that return FeedForwardNet
 FeedForwardNet Trainer.getNet()
          Getter of the property net
 

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

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