Model.hm_aic_getcurrentclassifier#
- Model.hm_aic_getcurrentclassifier()#
Returns the classifier name/folder in the project directory set for classification process. This folder contains the respective labeling and training information. The current classifier folder is located in the project directory.
- Returns:
hwReturnStatus- Status objectHmQueryResult- Result object containing the output values:classifier_name (str)
Example#
Get the classifier set for classification process#import hm import hm.entities as ent model = hm.Model() _, result = model.hm_aic_getcurrentclassifier() print("Classifier Name:", result.classifier_name)