The error function for use by QuasiNewtonTrainer for training a classification network.

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

Syntax

C#
public virtual QuasiNewtonTrainer..::.IError Error { get; }
Visual Basic (Declaration)
Public Overridable ReadOnly Property Error As QuasiNewtonTrainer..::.IError
Visual C++
public:
virtual property QuasiNewtonTrainer..::.IError^ Error {
	QuasiNewtonTrainer..::.IError^ get ();
}

Field Value

An implementation of the multi-classification cross-entropy error function.

Remarks

This error function combines the softmax activation function and the cross-entropy error function.

See Also