Uses of Class
org.tribuo.transform.TransformationMap
Packages that use TransformationMap
Package
Description
Provides the core interfaces and classes for using Tribuo.
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 aTransformationMapand converts it into aTransformerMapby observing all the values in this dataset.Dataset.createTransformers(TransformationMap transformations, boolean includeImplicitZeroFeatures) Takes aTransformationMapand converts it into aTransformerMapby observing all the values in this dataset. -
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.