Package com.imsl.datamining.neural
Class OutputPerceptron
java.lang.Object
com.imsl.datamining.neural.Node
com.imsl.datamining.neural.Perceptron
com.imsl.datamining.neural.OutputPerceptron
- All Implemented Interfaces:
Serializable
A
Perceptron in the OutputLayer.
OutputPerceptrons are created by factory methods
in Outputlayer.
OutputPerceptrons are not created directly.
Instead factory methods in OutputLayer are
used to create OutputPerceptrons within the
OutputLayer. For example,
OutputLayer.createPerceptron() creates a single
OutputPerceptron.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondoublegetValue()Returns the value of theOutputPerceptrondetermined using the current network state and inputs.Methods inherited from class com.imsl.datamining.neural.Perceptron
getActivation, getBias, setActivation, setBias
-
Method Details
-
getValue
public double getValue()Returns the value of theOutputPerceptrondetermined using the current network state and inputs.- Returns:
- A
doublevalue of theOutputPerceptrondetermined using the current network state and inputs.
-