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 TypeMethodDescriptionstatic Transformer
Transformer.deserialize
(org.tribuo.protos.core.TransformerProto proto) Deserializes aTransformerProto
into aTransformer
subclass.TransformStatistics.generateTransformer()
Generates the appropriateTransformer
from the collected statistics.Modifier and TypeMethodDescriptionTransformerMap.entrySet()
Get the feature names and associated list of transformers.Gets the transformers 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 TypeClassDescriptionstatic final class
The implementation of aTransformer
which splits the input into n bins.final class
This is used for stateless functions such as exp, log, addition or multiplication by a constant.