Uses of Interface
org.tribuo.transform.Transformer
Package
Description
Provides infrastructure for applying transformations to a
Dataset
.Provides implementations of standard transformations like binning, scaling, taking logs and exponents.
-
Uses of Transformer in org.tribuo.transform
Modifier and TypeMethodDescriptionTransformStatistics.generateTransformer()
Generates the appropriateTransformer
from the collected statistics.Modifier and TypeMethodDescriptionTransformerMap.entrySet()
Get the feature names and associated list of transformers.Gets the transformer associated with a given feature name.Modifier and TypeMethodDescriptionstatic double
TransformerMap.applyTransformerList
(double value, List<Transformer> transformerList) Applies aList
ofTransformer
s to the supplied double value, returning the transformed value.ModifierConstructorDescriptionTransformerMap
(Map<String, List<Transformer>> map, DatasetProvenance datasetProvenance, com.oracle.labs.mlrg.olcut.provenance.ConfiguredObjectProvenance transformationMapProvenance) Constructs a transformer map which encapsulates a set of transformers that can be applied to features. -
Uses of Transformer in org.tribuo.transform.transformations
Modifier and TypeClassDescriptionfinal class
This is used for stateless functions such as exp, log, addition or multiplication by a constant.