I have a model developed with h2o 3.38. I calibrated it with a separate data. Now when I score a new data set, I see the calibrated probabilities. If I save the model as:
h2o.save_model(gbm_model, path=model_path', force=True)
and load it with h2o.load_model(model_path)
and score it I can get calibrated probabilities.
However, if I use mojo as: gbm.save_mojo(model_path)
and load it as h2o.import_mojo(model_path)
and score the data I don't get calibrated probabilities.
Is it not possible to get calibrated probabilities with mojo?