Uses of Interface
org.tribuo.classification.dtree.impurity.LabelImpurity
Package
Description
Provides implementations of decision trees for classification problems.
Provides internal implementation classes for classification decision trees.
Provides classification impurity metrics for decision trees.
-
Uses of LabelImpurity in org.tribuo.classification.dtree
ModifierConstructorDescriptionCARTClassificationTrainer
(int maxDepth, float minChildWeight, float minImpurityDecrease, float fractionFeaturesInSplit, boolean useRandomSplitPoints, LabelImpurity impurity, long seed) Creates a CART Trainer.CARTClassificationTrainer
(int maxDepth, float minChildWeight, float minImpurityDecrease, float fractionFeaturesInSplit, LabelImpurity impurity, long seed) Creates a CART Trainer. -
Uses of LabelImpurity in org.tribuo.classification.dtree.impl
ModifierConstructorDescriptionClassifierTrainingNode
(LabelImpurity impurity, Dataset<Label> examples, AbstractTrainingNode.LeafDeterminer leafDeterminer) Constructor which creates the inverted file. -
Uses of LabelImpurity in org.tribuo.classification.dtree.impurity