Class Node

java.lang.Object
com.imsl.datamining.neural.Node
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
InputNode, Perceptron

public abstract class Node extends Object implements Serializable
A Node in a neural network.

Node is an abstract class that serves as the base class for the concrete classes InputNode and Perceptron.

See Also:
  • Method Details

    • getLayer

      public Layer getLayer()
      Returns the Layer in which this Node exists.
      Returns:
      The Layer associated with this Node.