Class InputLayer

java.lang.Object
com.imsl.datamining.neural.Layer
com.imsl.datamining.neural.InputLayer
All Implemented Interfaces:
Serializable

public class InputLayer extends Layer
Input layer in a neural network. An InputLayer is automatically created by Network.
See Also:
  • Method Details

    • createInput

      public InputNode createInput()
      Creates an InputNode in the InputLayer of the neural network.
    • createInputs

      public InputNode[] createInputs(int n)
      Creates a number of InputNodes in this Layer of the neural network.
      Parameters:
      n - An int which specifies the number of InputNodes to be created in this Layer.
      Returns:
      An array containing the created InputNodes.
    • getNodes

      public Node[] getNodes()
      Return the Perceptrons in the InputLayer.
      Overrides:
      getNodes in class Layer
      Returns:
      An InputNode array containing the Nodes in the InputLayer.