I have trained a model to classify faces based on FaceNet, and while I am trying to convert the model to CoreML model using converters.sklearn.convert
, I do not get class labels embedded to it by default, how can I add class labels to my CoreML model.
This my current script that converts the model
classFeatureNames = ("Prediction","Probability")
coreml_model = ct.converters.sklearn.convert(model,input_features='inputArray', output_feature_names=classNames)
coreml_model.save("celebritySix.mlmodel")
Model generated using above script returns me labels as, [0,1,2,3,4,5] while I am expecting the respective name of person detected.
From the coremltools convert docs:
Most
scikit-learn
estimators have aclasses_
attribute where labels are stored. Either the model was not trained with the right class labels, or coremltools is not correctly applying the attribute when converting.MRE with
Y
/N
labels: