Uses of Class
org.tribuo.transform.TransformationMap
Packages that use TransformationMap
Package
Description
Provides the core interfaces and classes for using Tribuo.
Provides classes for loading in data from disk, processing it into examples, and splitting datasets for
things like cross-validation and train-test splits.
Provides infrastructure for applying transformations to a
Dataset
.-
Uses of TransformationMap in org.tribuo
Methods in org.tribuo with parameters of type TransformationMapModifier and TypeMethodDescriptionDataset.createTransformers
(TransformationMap transformations) Takes aTransformationMap
and converts it into aTransformerMap
by observing all the values in this dataset.Dataset.createTransformers
(TransformationMap transformations, boolean includeImplicitZeroFeatures) Takes aTransformationMap
and converts it into aTransformerMap
by observing all the values in this dataset. -
Uses of TransformationMap in org.tribuo.data
Fields in org.tribuo.data declared as TransformationMapModifier and TypeFieldDescriptionCompletelyConfigurableTrainTest.ConfigurableTrainTestOptions.transformationMap
Load a transformation map from the config file.ConfigurableTrainTest.ConfigurableTrainTestOptions.transformationMap
Load a transformation map from the config file. -
Uses of TransformationMap in org.tribuo.transform
Constructors in org.tribuo.transform with parameters of type TransformationMapModifierConstructorDescriptionTransformTrainer
(Trainer<T> innerTrainer, TransformationMap transformations) Creates a trainer which transforms the data before training, and stores the transformers along with the trained model in aTransformedModel
.TransformTrainer
(Trainer<T> innerTrainer, TransformationMap transformations, boolean densify) Creates a trainer which transforms the data before training, and stores the transformers along with the trained model in aTransformedModel
.TransformTrainer
(Trainer<T> innerTrainer, TransformationMap transformations, boolean densify, boolean includeImplicitZeroFeatures) Creates a trainer which transforms the data before training, and stores the transformers along with the trained model in aTransformedModel
.