C# Class Encog.Engine.Util.ErrorCalculation

Calculate the error of a neural network. Encog currently supports three error calculation modes. See ErrorCalculationMode for more info.
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode Description
Calculate ( ) : double

Returns the root mean square error for a complete training set.

CalculateARCTAN ( ) : double

Calculate the error with ARCTAN.

CalculateMSE ( ) : double

Calculate the error with MSE.

CalculateRMS ( ) : double

Calculate the error with RMS.

Reset ( ) : void

Reset the error accumulation to zero.

UpdateError ( double actual, double ideal ) : void

Called to update for each number that should be checked.

Method Details

Calculate() public méthode

Returns the root mean square error for a complete training set.
public Calculate ( ) : double
Résultat double

CalculateARCTAN() public méthode

Calculate the error with ARCTAN.
public CalculateARCTAN ( ) : double
Résultat double

CalculateMSE() public méthode

Calculate the error with MSE.
public CalculateMSE ( ) : double
Résultat double

CalculateRMS() public méthode

Calculate the error with RMS.
public CalculateRMS ( ) : double
Résultat double

Reset() public méthode

Reset the error accumulation to zero.
public Reset ( ) : void
Résultat void

UpdateError() public méthode

Called to update for each number that should be checked.
public UpdateError ( double actual, double ideal ) : void
actual double The actual number.
ideal double The ideal number.
Résultat void