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

Packages that use Layer
de.htwdd.rosenkoenig.neuro.net The package net contains implementations, examples and utilities to create and train neural networks. 
 

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

Subclasses of Layer in de.htwdd.rosenkoenig.neuro.net
 class InnerLayer
          This class represents all hidden layers.
 class InputLayer
          This class represents an input layer.
 class KohonenLayer
          This wrapper class is needed to use a KohonenNet as input layer for a FeedForwardNet.
 

Fields in de.htwdd.rosenkoenig.neuro.net declared as Layer
private  Layer Synapse.inputLayer
          The input layer of the Synapse.
 

Methods in de.htwdd.rosenkoenig.neuro.net that return Layer
 Layer Synapse.getInputLayer()
          Getter of the property inputLayer
 

Methods in de.htwdd.rosenkoenig.neuro.net with parameters of type Layer
 void Synapse.setInputLayer(Layer inputLayer)
          Setter of the property inputLayer
 

Constructors in de.htwdd.rosenkoenig.neuro.net with parameters of type Layer
Synapse(Layer inputLayer, InnerLayer outputLayer)
          Create a Synapse using inputLayer and outputLayer.