Method | Description | |
---|---|---|
Calculate ( ) : double |
Returns the root mean square error for a complete training set.
|
|
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 |
Update the error with single values.
|
|
UpdateError ( double actual, double ideal, double significance ) : void |
Called to update for each number that should be checked.
|
public UpdateError ( double actual, double ideal ) : void | ||
actual | double | The actual value. |
ideal | double | The ideal value. |
return | void |
public UpdateError ( double actual, double ideal, double significance ) : void | ||
actual | double | The actual number. |
ideal | double | The ideal number. |
significance | double | The significance of this error, 1.0 is the baseline. |
return | void |