-
Notifications
You must be signed in to change notification settings - Fork 111
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
Model save support #15
Comments
I am also looking for solution to save model using scala spark |
I also had this problem,does it any solution for it? |
I've tried like this: but the model pulled back in no longer seems to work, which is strange since this has worked for all my other models. |
I also encountered this problem. I attempted to serialize this model and load again. but rdd[tree] cannot be deserialized correctly. it looks like that metricTree have some problem. if you have sollution,comment please |
Also saving using PipelineModel.save() does not work:
|
HI, Has this problem been solved now? |
I saved a model(KNNClassificationModel) using java serialization and when I use it later, I always get java.lang.IllegalArgumentException: Flat hash tables cannot contain null elements.
on the dataframe output of the model.transform(inputDataFrame).
Is there a better way of saving and using model? like support for MLWritable/Saveable traits. In our use case, we create a model and use it later
The text was updated successfully, but these errors were encountered: