Error function to be minimized by trainer.

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

Syntax

C#
public interface IError
Visual Basic (Declaration)
Public Interface IError
Visual C++
public interface class IError

Remarks

This trainer attempts to solve the problem


            \min_{w} \sum_{i=0}^{n-1} e(y_i, \hat{y}_i)
where w are the weights, n is the number of training patterns, y_i is a training target output and 
            \hat{y}_i is its forecast value.

This interface defines the function e(y,\hat{y}) and its derivative with respect to its computed value, 
            de/d\hat{y}.

See Also