TrainingModeEnum
TrainingModeEnum enumeration constants are used to specify the training mode for a classification model.
typedef enum {
TM_Precision,
TM_Recall,
TM_Balanced
} TrainingModeEnum;
Elements
Name | Description |
---|---|
TM_Balanced | The training process will aim at balancing precision and recall. |
TM_Precision | The training will aim at high precision levels. |
TM_Recall | The training will aim at high recall levels. |
Used in
7/3/2024 8:50:25 AM