smt
smt copied to clipboard
Saving models without using pickle?
Hello, is there any other way to save a (kriging) model without using pickle?
If not, for KrgBased
models, which attributes would need to be saved and then "re-loaded" to be able to predict new values?
Thanks!
Hi. No there is no native implementation of save/load for kriging-based models in SMT (see also the doc).
But I guess you already know that 😉 which leads to your second question. To implement such feature you have to parse mainly _predict_values() and possibly predict_values() for self.attribute constructions to get them.