Model.hm_aic_getcurrentlabel#
- Model.hm_aic_getcurrentlabel()#
Returns the current label set by the user for classification process. A label contains parts information necessary for training and classification.
- Returns:
hwReturnStatus- Status objectHmQueryResult- Result object containing the output values:label_name (str)
Example#
Get the current label for classification process#import hm import hm.entities as ent model = hm.Model() _, result = model.hm_aic_getcurrentlabel() print("Classifier Label Name:", result.label_name)