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

Packages that use NeuralNet
de.htwdd.rosenkoenig.neuro Contains all parts of Rosenkoenig that deal with neural networks. 
de.htwdd.rosenkoenig.neuro.net The package net contains implementations, examples and utilities to create and train neural networks. 
 

Uses of NeuralNet in de.htwdd.rosenkoenig.neuro
 

Fields in de.htwdd.rosenkoenig.neuro declared as NeuralNet
private  NeuralNet NeuroPlayer.net
          The player's brain :-)
 

Methods in de.htwdd.rosenkoenig.neuro that return NeuralNet
 NeuralNet NeuroPlayer.getNet()
          Getter of the property net
 

Methods in de.htwdd.rosenkoenig.neuro with parameters of type NeuralNet
 void NeuroPlayer.setNet(NeuralNet net)
          Setter of the property net
 

Uses of NeuralNet in de.htwdd.rosenkoenig.neuro.net
 

Subclasses of NeuralNet in de.htwdd.rosenkoenig.neuro.net
 class FeedForwardNet
          This class implements a feed forward net.
 class KohonenNet
           KohonenNet is an implementation of a self organizing map.
 

Methods in de.htwdd.rosenkoenig.neuro.net that return NeuralNet
static NeuralNet NeuralNet.loadFromFile(java.lang.String filename)
          This function loads a net from a file.