Click or drag to resize
OutputLayerCreatePerceptrons Method (Int32, IActivation, Double)
Creates a number of Perceptrons in this Layer with specified activation and biasBias.

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 indicates the action function to be used.
bias
Type: SystemDouble
A double which specifies the initial bias for the Perceptrons.

Return Value

Type: Perceptron
An array containing the created Perceptrons.
See Also