Package com.imsl.datamining.neural
Class InputLayer
java.lang.Object
com.imsl.datamining.neural.Layer
com.imsl.datamining.neural.InputLayer
- All Implemented Interfaces:
Serializable
Input layer in a neural network. An
InputLayer is automatically
created by Network.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionCreates anInputNodein theInputLayerof the neural network.createInputs(int n) Creates a number ofInputNodes in thisLayerof the neural network.Node[]getNodes()Return thePerceptrons in theInputLayer.
-
Method Details
-
createInput
Creates anInputNodein theInputLayerof the neural network. -
createInputs
Creates a number ofInputNodes in thisLayerof the neural network.- Parameters:
n- Anintwhich specifies the number ofInputNodes to be created in thisLayer.- Returns:
- An array containing the created
InputNodes.
-
getNodes
Return thePerceptrons in theInputLayer.
-