All Downloads are FREE. Search and download functionalities are using the official Maven repository.

biz.k11i.xgboost.tree.TreeSHAPHelper Maven / Gradle / Ivy

There is a newer version: 3.46.0.6
Show newest version
package biz.k11i.xgboost.tree;

import biz.k11i.xgboost.util.FVec;
import hex.genmodel.algos.tree.TreeSHAP;
import hex.genmodel.algos.tree.TreeSHAPPredictor;

public class TreeSHAPHelper {

  public static TreeSHAPPredictor makePredictor(RegTree tree) {
    RegTreeImpl treeImpl = (RegTreeImpl) tree;
    return new TreeSHAP<>(treeImpl.getNodes(), treeImpl.getStats(), 0);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy