Uses of Interface
org.tribuo.regression.rtree.impurity.RegressorImpurity
Package
Description
Provides an implementation of decision trees for regression problems.
Provides internal implementation classes for the regression trees.
Provides implementations of regression tree impurity metrics.
-
Uses of RegressorImpurity in org.tribuo.regression.rtree
ModifierConstructorDescriptionCARTJointRegressionTrainer
(int maxDepth, float minChildWeight, float minImpurityDecrease, float fractionFeaturesInSplit, boolean useRandomSplitPoints, RegressorImpurity impurity, boolean normalize, long seed) Creates a CART Trainer.CARTJointRegressionTrainer
(int maxDepth, float minChildWeight, float minImpurityDecrease, float fractionFeaturesInSplit, RegressorImpurity impurity, boolean normalize, long seed) Creates a CART Trainer.CARTRegressionTrainer
(int maxDepth, float minChildWeight, float minImpurityDecrease, float fractionFeaturesInSplit, boolean useRandomSplitPoints, RegressorImpurity impurity, long seed) Creates a CART Trainer.CARTRegressionTrainer
(int maxDepth, float minChildWeight, float minImpurityDecrease, float fractionFeaturesInSplit, RegressorImpurity impurity, long seed) Creates a CART Trainer. -
Uses of RegressorImpurity in org.tribuo.regression.rtree.impl
ModifierConstructorDescriptionJointRegressorTrainingNode
(RegressorImpurity impurity, Dataset<Regressor> examples, boolean normalize, AbstractTrainingNode.LeafDeterminer leafDeterminer) Constructor which creates the inverted file.RegressorTrainingNode
(RegressorImpurity impurity, RegressorTrainingNode.InvertedData tuple, int dimIndex, String dimName, int numExamples, ImmutableFeatureMap featureIDMap, ImmutableOutputInfo<Regressor> outputInfo, AbstractTrainingNode.LeafDeterminer leafDeterminer) Constructs a tree training node for regression problems. -
Uses of RegressorImpurity in org.tribuo.regression.rtree.impurity
Modifier and TypeClassDescriptionclass
Measures the mean absolute error over a set of inputs.class
Measures the mean squared error over a set of inputs.