Hi Neeraj,
H2O binary models are not compatible across major versions. Yes,
you will need to re-train the models to use them in 3.14.* I am
not sure why you think this doesn't make sense... For binary
models, this is the standard practice -- you will have the same
situation if you use scikit-learn, for example.
We will make sure to add this to the docs, because I don't see
this noted in our user guide:
http://docs.h2o.ai/h2o/latest-stable/h2o-docs/save-and-load-model.html
If you want to use MOJO/POJO models in production, those are not tied to a particular version of H2O since they are just plain Java code and do not require the H2O cluster to be running. Sounds like that's what you want to be doing. http://docs.h2o.ai/h2o/latest-stable/h2o-docs/productionizing.html
-Erin
--
You received this message because you are subscribed to the Google Groups "H2O Open Source Scalable Machine Learning - h2ostream" group.
To unsubscribe from this group and stop receiving emails from it, send an email to h2ostream+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
-- Erin LeDell Ph.D. Statistician & Machine Learning Scientist | H2O.ai
To unsubscribe from this group and stop receiving emails from it, send an email to h2ostream+unsubscribe@googlegroups.com.
Your code below should work.
-Erin
Hi Erin,
Thank you for replying back. It makes sense and I am using MOJO/POJO models in production now, however one very critical issue I am not able to tackle. I can definitely remove temp objects in h2o instances using h2o.rm and h2o.removeAll() but it does not clear the memory usage from h2o. So lets say if I start the instance and call my model and do some work, the memory goes from 0 to 50%, which is okay but even after removing the objects and model it does not go back to 0%.
I was reading in trouble shooting doc for R which gave example of garbage collection, however that does not seem to work either.
I am using this right after I have removed the objects from h2o instances from R.
.h2o.garbageCollect <- function() {res <- .h2o.__remoteSend("GarbageCollect", method = "POST")}h2o:::.h2o.garbageCollect()h2o:::.h2o.garbageCollect()h2o:::.h2o.garbageCollect()
Any suggestion would be greatly appreciated.
Thank youNeeraj
On Oct 4, 2017 4:20 PM, "Erin LeDell" <er...@h2o.ai> wrote:
To unsubscribe from this group and stop receiving emails from it, send an email to h2ostream+unsubscribe@googlegroups.com.
-- Erin LeDell Ph.D. Statistician & Machine Learning Scientist | H2O.ai