The value of the gradient of the error function with respect to the Weights.

Namespace: Imsl.DataMining.Neural
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual double[] ErrorGradient { get; }
Visual Basic (Declaration)
Public Overridable ReadOnly Property ErrorGradient As Double()
Visual C++
public:
virtual property array<double>^ ErrorGradient {
	array<double>^ get ();
}

Field Value

A double array whose length is equal to the number of network Weights, containing the value of the gradient of the error function with respect to the Weights.

Implements

ITrainer..::.ErrorGradient

Remarks

Before training, null is returned.

See Also