I am trying to build a number classification model in CoreML and want to use the naive bayes classifier but not able to find how to use it. My algorithm is using naive bayes
At the moment, coremltools support only following types of classifiers:
However, implementing Naïve Bayes in Swift yourself is not that hard, check this implementation, for example.