Uses of Interface
org.tribuo.common.tree.DecisionTreeTrainer
Packages that use DecisionTreeTrainer
Package
Description
Provides implementations of decision trees for classification problems.
Provides common functionality for building decision trees, irrespective
of the predicted
Output
.Provides an implementation of decision trees for regression problems.
-
Uses of DecisionTreeTrainer in org.tribuo.classification.dtree
Classes in org.tribuo.classification.dtree that implement DecisionTreeTrainerModifier and TypeClassDescriptionclass
ATrainer
that uses an approximation of the CART algorithm to build a decision tree. -
Uses of DecisionTreeTrainer in org.tribuo.common.tree
Classes in org.tribuo.common.tree that implement DecisionTreeTrainerModifier and TypeClassDescriptionclass
AbstractCARTTrainer<T extends Output<T>>
Base class forTrainer
's that use an approximation of the CART algorithm to build a decision tree.Constructors in org.tribuo.common.tree with parameters of type DecisionTreeTrainerModifierConstructorDescriptionExtraTreesTrainer
(DecisionTreeTrainer<T> trainer, EnsembleCombiner<T> combiner, int numMembers) Constructs an ExtraTreesTrainer with the default seedTrainer.DEFAULT_SEED
.ExtraTreesTrainer
(DecisionTreeTrainer<T> trainer, EnsembleCombiner<T> combiner, int numMembers, long seed) Constructs an ExtraTreesTrainer with the supplied seed, trainer, combining function and number of members.RandomForestTrainer
(DecisionTreeTrainer<T> trainer, EnsembleCombiner<T> combiner, int numMembers) Constructs a RandomForestTrainer with the default seedTrainer.DEFAULT_SEED
.RandomForestTrainer
(DecisionTreeTrainer<T> trainer, EnsembleCombiner<T> combiner, int numMembers, long seed) Constructs a RandomForestTrainer with the supplied seed, trainer, combining function and number of members. -
Uses of DecisionTreeTrainer in org.tribuo.regression.rtree
Classes in org.tribuo.regression.rtree that implement DecisionTreeTrainer