from https://github.com/combust/mleap/pull/645, XGBoostPredictorClassification improve performance by only predicting probability
I wonder if we use both XGBoostPredictorClassification and XGBoostClassification in the same project, because now we have multi bundles with different op dependency, some depend on XGBoostClassification to support leaf prediction while some not.
for example, the following setting enable XGBoostPredictorClassificationOp as default op
ml.combust.mleap.xgboost.ops = [ "ml.combust.mleap.xgboost.runtime.bundle.ops.XGBoostPredictorClassificationOp", "ml.combust.mleap.xgboost.runtime.bundle.ops.XGBoostRegressionOp" ]
the following enable XGBoostClassificationOp as default OP
ml.combust.mleap.xgboost.ops = [ "ml.combust.mleap.xgboost.runtime.bundle.ops.XGBoostClassificationOp", "ml.combust.mleap.xgboost.runtime.bundle.ops.XGBoostRegressionOp" ]
I need XGBoostClassificationOp to evaluate some xgboost prediction with leaf, in the same time, use XGBoostPredictorClassificationOp to evaluate other xgboost prediction to improve xgb performance
solved it by register op through code.
use XGBoostClassificationOp as default op without configure through reference.conf
use XGBoostPredictorClassificationOp as op with following code: