Uses of Interface
org.tribuo.common.tree.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
Modifier and TypeClassDescriptionclass
ATrainer
that uses an approximation of the CART algorithm to build a decision tree. -
Uses of DecisionTreeTrainer in org.tribuo.common.tree
Modifier and TypeClassDescriptionclass
AbstractCARTTrainer<T extends Output<T>>
Base class forTrainer
's that use an approximation of the CART algorithm to build a decision tree.ModifierConstructorDescriptionExtraTreesTrainer
(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