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:

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)