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

Packages that use KohonenNet
de.htwdd.rosenkoenig.neuro.net The package net contains implementations, examples and utilities to create and train neural networks. 
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 KohonenNet in de.htwdd.rosenkoenig.neuro.net
 

Fields in de.htwdd.rosenkoenig.neuro.net declared as KohonenNet
private  KohonenNet KohonenLayer.kohonenNet
          The Kohonen map wrapped by this KohonenLayer.
 

Methods in de.htwdd.rosenkoenig.neuro.net that return KohonenNet
 KohonenNet KohonenLayer.getKohonenNet()
          Getter of the property kohonenNet
 

Methods in de.htwdd.rosenkoenig.neuro.net with parameters of type KohonenNet
 void KohonenLayer.setKohonenNet(KohonenNet kohonenNet)
          Setter of the property kohonenNet
 

Constructors in de.htwdd.rosenkoenig.neuro.net with parameters of type KohonenNet
KohonenLayer(KohonenNet kohonenNet, boolean biased)
          Creates and initializes a new KohonenLayer.
 

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

Methods in de.htwdd.rosenkoenig.neuro.net.examples with parameters of type KohonenNet
private static void AnimalExample.presentPatterns(KohonenNet som)
           
 

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

Fields in de.htwdd.rosenkoenig.neuro.net.training declared as KohonenNet
private  KohonenNet KohonenTrainer.net
          The net trained by this KohonenTrainer.
 

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

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

Constructors in de.htwdd.rosenkoenig.neuro.net.training with parameters of type KohonenNet
KohonenTrainer(KohonenNet net)
          Creates and initializes a new instance of KohonenTrainer.