Uses of Interface
org.tribuo.common.tree.DecisionTreeTrainer
Packages that use DecisionTreeTrainer
Package
Description
Provides common functionality for building decision trees, irrespective
of the predicted
Output.-
Uses of DecisionTreeTrainer in org.tribuo.common.tree
Classes in org.tribuo.common.tree that implement DecisionTreeTrainerModifier and TypeClassDescriptionclassAbstractCARTTrainer<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.