Click or drag to resize
HiddenLayerCreatePerceptrons Method (Int32, IActivation, Double)
Creates a number of Perceptrons in this Layer with the specified bias.

Namespace: Imsl.DataMining.Neural
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public virtual Perceptron[] CreatePerceptrons(
	int n,
	IActivation activation,
	double bias
)

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