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

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

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

Fields in de.htwdd.rosenkoenig.neuro.net declared as InnerLayer
private  InnerLayer Synapse.outputLayer
          The output layer of the Synapse.
 

Fields in de.htwdd.rosenkoenig.neuro.net with type parameters of type InnerLayer
private  java.util.ArrayList<InnerLayer> FeedForwardNet.layers
          This is the ArrayList representation of the hidden layers and the output layer.
 

Methods in de.htwdd.rosenkoenig.neuro.net that return InnerLayer
 InnerLayer FeedForwardNet.getLayers(int i)
          Returns the layer at the specified position in this list.
 InnerLayer Synapse.getOutputLayer()
          Getter of the property outputLayer
 InnerLayer[] FeedForwardNet.layersToArray()
          Returns an array containing all of the layers in this list in proper sequence.
 InnerLayer[] FeedForwardNet.layersToArray(InnerLayer[] layers)
          Returns an array containing all of the layers in this list in proper sequence; the runtime type of the returned array is that of the specified array.
 

Methods in de.htwdd.rosenkoenig.neuro.net that return types with arguments of type InnerLayer
 java.util.ArrayList<InnerLayer> FeedForwardNet.getLayers()
          Getter of the property layers
 java.util.Iterator<InnerLayer> FeedForwardNet.layersIterator()
          Returns an iterator over the layers in this list in proper sequence.
 

Methods in de.htwdd.rosenkoenig.neuro.net with parameters of type InnerLayer
 boolean FeedForwardNet.addLayers(InnerLayer innerLayer)
          Appends the specified layer to the end of this list (optional operation).
 void FeedForwardNet.addLayers(int index, InnerLayer innerLayer)
          Inserts the specified layer at the specified position in this list (optional operation)
 boolean FeedForwardNet.containsLayers(InnerLayer innerLayer)
          Returns true if this list contains the specified layer.
 InnerLayer[] FeedForwardNet.layersToArray(InnerLayer[] layers)
          Returns an array containing all of the layers in this list in proper sequence; the runtime type of the returned array is that of the specified array.
 boolean FeedForwardNet.removeLayers(InnerLayer innerLayer)
          Removes the first occurrence in this list of the specified layer (optional operation).
 void Synapse.setOutputLayer(InnerLayer outputLayer)
          Setter of the property outputLayer
 

Method parameters in de.htwdd.rosenkoenig.neuro.net with type arguments of type InnerLayer
 boolean FeedForwardNet.containsAllLayers(java.util.Collection<InnerLayer> layers)
          Returns true if this list contains all of the layers of the specified collection.
 void FeedForwardNet.setLayers(java.util.ArrayList<InnerLayer> layers)
          Setter of the property layers
 

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