[This is preliminary documentation and is subject to change.]

The termination condition options for training

Namespace: Clarion
Assembly: ClarionLibrary (in ClarionLibrary.dll) Version: 6.1.1.0 (6.1.1.0)

Syntax

C#
public enum TrainingTerminationConditions

Members

Member nameValueDescription
FIXED0 Indicates that training should terminate after a fixed number of iterations through the training data set
SUM_SQ_ERROR1 Indicates that training should terminate when the sum of squared error falls below a specified threshold
BOTH2 Indicates that training should terminate either after a fixed number of iterations OR based on the sum of squared error, whichever comes first

See Also