Uses of Class
org.tribuo.transform.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
Modifier 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
Modifier 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
ModifierConstructorDescriptionTransformTrainer
(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
.