Sets the function that computes the network error.

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

Syntax

C#
public virtual void SetError(
	QuasiNewtonTrainer..::.IError error
)
Visual Basic (Declaration)
Public Overridable Sub SetError ( _
	error As QuasiNewtonTrainer..::.IError _
)
Visual C++
public:
virtual void SetError(
	QuasiNewtonTrainer..::.IError^ error
)

Parameters

error
Type: Imsl.DataMining.Neural..::.QuasiNewtonTrainer..::.IError
The IError object containing the function to be used to compute the network error.

Remarks

The default is to compute the sum of squares error, SUM_OF_SQUARES.

See Also