| HiddenLayerCreatePerceptrons Method (Int32, IActivation, Double) |
Creates a number of Perceptrons in this Layer with
the specified bias.
Namespace: Imsl.DataMining.NeuralAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic virtual Perceptron[] CreatePerceptrons(
int n,
IActivation activation,
double bias
)
Public Overridable Function CreatePerceptrons (
n As Integer,
activation As IActivation,
bias As Double
) As Perceptron()
public:
virtual array<Perceptron^>^ CreatePerceptrons(
int n,
IActivation^ activation,
double bias
)
abstract CreatePerceptrons :
n : int *
activation : IActivation *
bias : float -> Perceptron[]
override CreatePerceptrons :
n : int *
activation : IActivation *
bias : float -> Perceptron[] Parameters
- n
- Type: SystemInt32
An int which specifies the number of Perceptrons to be
created.
- activation
- Type: Imsl.DataMining.NeuralIActivation
The IActivation object which specifies the action function to
be used.
- bias
- Type: SystemDouble
A double containing the initial value to be applied as the
Bias values for the Perceptrons.
Return Value
Type:
Perceptron
An array containing the created
Perceptrons.
See Also