![JAR search and dependency download from the Maven repository](/logo.png)
hex.genmodel.algos.tree.TreeSHAPPredictor Maven / Gradle / Ivy
package hex.genmodel.algos.tree;
import java.io.Serializable;
public interface TreeSHAPPredictor extends Serializable {
float[] calculateContributions(final R feat, float[] out_contribs);
float[] calculateContributions(final R feat,
float[] out_contribs, int condition, int condition_feature,
Workspace workspace);
double[] calculateInterventionalContributions(final R feat, final R background, double[] out_contribs, int[] catOffsets, boolean expand);
Workspace makeWorkspace();
int getWorkspaceSize();
interface Workspace {
int getSize();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy