| FeedForwardNetworkWeights Property |
The
weight values for
the
Links
in this
Network.
Namespace: Imsl.DataMining.NeuralAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic override double[] Weights { get; set; }Public Overrides Property Weights As Double()
Get
Set
public:
virtual property array<double>^ Weights {
array<double>^ get () override;
void set (array<double>^ value) override;
}abstract Weights : float[] with get, set
override Weights : float[] with 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