Uses of Class
org.tribuo.provenance.EnsembleModelProvenance
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 EnsembleModelProvenance in org.tribuo.ensemble
Modifier and TypeMethodDescriptionprotected abstract EnsembleModel<T>
Copies this ensemble model.protected EnsembleModel<T>
WeightedEnsembleModel.copy
(String name, EnsembleModelProvenance newProvenance, List<Model<T>> newModels) ModifierConstructorDescriptionprotected
EnsembleModel
(String name, EnsembleModelProvenance provenance, ImmutableFeatureMap featureIDMap, ImmutableOutputInfo<T> outputIDInfo, List<Model<T>> newModels) Builds an EnsembleModel from the supplied model list.WeightedEnsembleModel
(String name, EnsembleModelProvenance provenance, ImmutableFeatureMap featureIDMap, ImmutableOutputInfo<T> outputIDInfo, List<Model<T>> newModels, EnsembleCombiner<T> combiner) Unless you are implementing aTrainer
you 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 aTrainer
you should not use this constructor directly.