| HiddenLayerCreatePerceptrons Method (Int32) |
Creates a number of Perceptrons in this Layer of
the neural network.
Namespace: Imsl.DataMining.NeuralAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic virtual Perceptron[] CreatePerceptrons(
int n
)
Public Overridable Function CreatePerceptrons (
n As Integer
) As Perceptron()
public:
virtual array<Perceptron^>^ CreatePerceptrons(
int n
)
abstract CreatePerceptrons :
n : int -> Perceptron[]
override CreatePerceptrons :
n : int -> Perceptron[] Parameters
- n
- Type: SystemInt32
An int which specifies the number of Perceptrons to be
created.
Return Value
Type:
Perceptron
An array containing the created
Perceptrons.
Remarks
The created Perceptrons use the logistic activation function
and have an initial bias value of zero.
See Also