I have a similar issue. I want to load a model saved by a spark machine
learning job, in a web application.
model.save(jsc.sc(), "myModelPath");
LogisticRegressionModel model =
LogisticRegressionModel.load(
I am glad to see DB’s comments, make me feel I am not the only one facing these
issues. If we are able to use MLLib to load the model in web applications
(outside the spark cluster), that would have solved the issue. I understand
Spark is manly for processing big data in a distributed mode. But