StopFunction.cs

Enumerations

FANN C# StopFunction enumerator

public enum StopFunction

StopFunction

Stop criteria used during training.

STOPFUNC_MSEStop criteria is Mean Square Error (MSE) value.
STOPFUNC_BITStop criteria is number of bits that fail.  The number of bits; means the number of output neurons which differ more than the bit fail limit (see FANNCSharp.Float::NeuralNet::BitFailLimit).  The bits are counted in all of the training data, so this number can be higher than the number of training data.

See also

FANNCSharp.Float::NeuralNet::TrainStopFunction

public enum StopFunction
public float BitFailLimit { get, set }
Gets or sets the bit fail limit used during training.
public StopFunction TrainStopFunction { get, set }
Gets or sets the stop function used during training.
Close