I'm trying to create a DBSCAN machine learning model using the scikit. So far i have somehow working Python model.
After this i want to convert it into a Core ML model, to be able to use it inside my iPhone application.
I read a lot of info. And here i found something like:
Core ML Only supports regression & classification (clustering, ranking, dimensionality reduction, etc. are not supported)
DBSCAN is a clustering algorithm, so according to this, even if i will successfully create my Python Machine learning model, i won't be able to convert it to Core ML, and to use inside my application?
Short answer is no.
Long answer: CoreML is not your only option for machine learning in iOS; you can find a comprehensive list of the available tools in the (continuously updated) Machine Learning for iOS page (although, from a quick scan, I could not locate DBSCAN clustering there, either).