Uses of Interface
org.tribuo.ensemble.EnsembleCombiner
Packages that use EnsembleCombiner
Package
Description
Provides an interface for model prediction combinations,
two base classes for ensemble models, a base class for
ensemble excuses, and a Bagging implementation.
-
Uses of EnsembleCombiner in org.tribuo.ensemble
Fields in org.tribuo.ensemble declared as EnsembleCombinerModifier and TypeFieldDescriptionprotected EnsembleCombiner<T> BaggingTrainer.combinerprotected final EnsembleCombiner<T> WeightedEnsembleModel.combinerThe ensemble combination function.Methods in org.tribuo.ensemble that return EnsembleCombinerModifier and TypeMethodDescriptionstatic EnsembleCombiner<?> EnsembleCombiner.deserialize(org.tribuo.protos.core.EnsembleCombinerProto proto) Deserialization helper for EnsembleCombiner.Methods in org.tribuo.ensemble with parameters of type EnsembleCombinerModifier and TypeMethodDescriptionstatic <T extends Output<T>>
WeightedEnsembleModel<T> WeightedEnsembleModel.createEnsembleFromExistingModels(String name, List<Model<T>> models, EnsembleCombiner<T> combiner) Creates an ensemble from existing models.static <T extends Output<T>>
WeightedEnsembleModel<T> WeightedEnsembleModel.createEnsembleFromExistingModels(String name, List<Model<T>> models, EnsembleCombiner<T> combiner, float[] weights) Creates an ensemble from existing models.Constructors in org.tribuo.ensemble with parameters of type EnsembleCombinerModifierConstructorDescriptionBaggingTrainer(Trainer<T> trainer, EnsembleCombiner<T> combiner, int numMembers) Constructs a bagging trainer with the supplied parameters usingTrainer.DEFAULT_SEEDas the RNG seed.BaggingTrainer(Trainer<T> trainer, EnsembleCombiner<T> combiner, int numMembers, long seed) Constructs a bagging trainer with the supplied parameters.WeightedEnsembleModel(String name, EnsembleModelProvenance provenance, ImmutableFeatureMap featureIDMap, ImmutableOutputInfo<T> outputIDInfo, List<Model<T>> newModels, EnsembleCombiner<T> combiner) Unless you are implementing aTraineryou should not use this constructor directly.WeightedEnsembleModel(String name, EnsembleModelProvenance provenance, ImmutableFeatureMap featureIDMap, ImmutableOutputInfo<T> outputIDInfo, List<Model<T>> newModels, EnsembleCombiner<T> combiner, float[] weights) Unless you are implementing aTraineryou should not use this constructor directly.