Click or drag to resize
FeedForwardNetworkWeights Property
The weight values for the Links in this Network.

Namespace: Imsl.DataMining.Neural
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public override double[] Weights { get; set; }

Property Value

Type: Double
An array of doubles containing the weights.
Remarks
The array contains the weights for each Link followed by the Perceptronbias values. The Linkweights are the order in which the Links were created. The weights values are first, followed by the bias values in the HiddenLayer and then the bias values in the OutputLayer, and in the order in which the Perceptrons were created.
See Also