ClassificationTrainingModeEnum
ClassificationTrainingModeEnum enumeration constants specify the priorities of classification training.
If you want the number of documents that receive the wrong class to be as low as possible at the expense of some documents not receiving any class at all, prioritize high precision over recall. If you want the number of documents that are not assigned any class to be as low as possible at the expense of some documents being assigned the wrong class, prioritize high recall over precision.
typedef enum {
CTM_Balanced,
CTM_HighPrecision,
CTM_HighRecall
} ClassificationTrainingModeEnum;
Elements
Name | Description |
---|---|
CTM_Balanced | Balanced setting for good precision and recall. |
CTM_HighPrecision | Prioritizes high precision over recall. |
CTM_HighRecall | Prioritizes high recall over precision. |
Used in
15.08.2023 13:19:30