Uses of Class
org.generation5.nn.FFNLayer

Packages that use FFNLayer
org.generation5.nn Neural network example classes including Kohonen, Perceptron and Feedforward networks. 
 

Uses of FFNLayer in org.generation5.nn
 

Subclasses of FFNLayer in org.generation5.nn
 class FFNHiddenLayer
          This class implements a hidden layer for a feedforward network.
 class FFNInputLayer
          This class implements the input layer for the feedforward network.
 class FFNOutputLayer
          This class implements the output layer for the feedforward network.
 

Fields in org.generation5.nn declared as FFNLayer
protected  FFNLayer[] FeedForwardNN.nnLayers
          The layers in this network.
protected  FFNLayer FFNLayer.connected
          The next layer that this layer is connected to.
 

Methods in org.generation5.nn with parameters of type FFNLayer
 void FeedForwardNN.setHiddenLayer(FFNLayer hidden, int layer)
          Set the given hidden layer.
 void FeedForwardNN.setOutputLayer(FFNLayer output)
          Set the output layer.
 void FFNLayer.connectWith(FFNLayer connect)
          Connects this layer with another layer.
 


This documentation is part of the Generation5 JDK.