-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MLeap's value for sklearn #430
Comments
In our use case, we had to support model building/training not just in scikit-learn, but also in Spark and Tensorflow, so MLeap helped in this case, because at scoring time, you need to worry about monitoring and scalability of a single model scoring service. At the same time, with MLeap we expose a unified scoring interface, so clients which integrate with the scoring service don't need to know/worry about whether it's a Spark model they're using or scikit-learn etc. And this makes switching between models, with an A/B test for example, very easy. Hope this helps! |
Thanks Anca. So MLeap not only solves the latency issue with Spark, but also provides an unified online scoring service that is model-building ML framework agnostic. Still it isn't clear why that is a problem.
|
MLeap solves the single-request low latency prediction problem for Spark pipeline. Quick test shows sklearn native pipeline.predict has pretty good latency < 3ms(sure it depends on the number of transforms). So why would people want to migrate the existing sklearn online prediction to MLeap? Thanks.
The text was updated successfully, but these errors were encountered: