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

ai.h2o.algos.tree.INode Maven / Gradle / Ivy

package ai.h2o.algos.tree;

public interface INode {

  boolean isLeaf();

  float getLeafValue();

  int getSplitIndex();

  int next(T value);

  int getLeftChildIndex();

  int getRightChildIndex();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy