Class JointRegressorTrainingNode

java.lang.Object
org.tribuo.common.tree.AbstractTrainingNode<Regressor>
org.tribuo.regression.rtree.impl.JointRegressorTrainingNode
All Implemented Interfaces:
Serializable, Node<Regressor>

A decision tree node used at training time. Contains a list of the example indices currently found in this node, the current impurity and a bunch of other statistics.
See Also:
  • Constructor Details

    • JointRegressorTrainingNode

      public JointRegressorTrainingNode(RegressorImpurity impurity, Dataset<Regressor> examples, boolean normalize)
      Constructor which creates the inverted file.
      Parameters:
      impurity - The impurity function to use.
      examples - The training data.
      normalize - Normalizes the leaves so each leaf has a distribution which sums to 1.0.
  • Method Details