Skip to main content
TrainingModeEnum enumeration constants are used to specify the training mode for a classification model.
typedef enum {
  TM_Precision,
  TM_Recall,
  TM_Balanced
} TrainingModeEnum;

Elements

NameDescription
TM\_BalancedThe training process will aim at balancing precision and recall.
TM\_PrecisionThe training will aim at high precision levels.
TM\_RecallThe training will aim at high recall levels.

Used in

ITrainingParams::TrainingMode