Uses of Interface
org.tribuo.transform.Transformation
Package
Description
Provides infrastructure for applying transformations to a
Dataset
.Provides implementations of standard transformations like binning, scaling, taking logs and exponents.
-
Uses of Transformation in org.tribuo.transform
Modifier and TypeFieldDescriptionTransformationMap.TransformationList.list
The list of transformations.Modifier and TypeMethodDescriptionTransformationMap.getFeatureTransformations()
Gets the map of feature specific transformations.TransformationMap.getGlobalTransformations()
Gets the global transformations in this TransformationMap.ModifierConstructorDescriptionTransformationList
(List<Transformation> list) Constructs a transformation list.TransformationMap
(List<Transformation> globalTransformations) Creates a TransformationMap with only global transformations.TransformationMap
(List<Transformation> globalTransformations, Map<String, List<Transformation>> featureTransformations) Creates a transformation map from the supplied global transformation list, and per feature transformations.TransformationMap
(List<Transformation> globalTransformations, Map<String, List<Transformation>> featureTransformations) Creates a transformation map from the supplied global transformation list, and per feature transformations.TransformationMap
(Map<String, List<Transformation>> featureTransformations) Creates a TransformationMap with only per feature transformations. -
Uses of Transformation in org.tribuo.transform.transformations
Modifier and TypeClassDescriptionfinal class
A Transformation which bins values.class
A feature transformation that computes the IDF for features and then transforms them with a TF-IDF weighting.final class
A Transformation which takes an observed distribution and rescales it so all values are between the desired min and max.final class
A Transformation which takes an observed distribution and rescales it so it has the desired mean and standard deviation.final class
This is used for stateless functions such as exp, log, addition or multiplication by a constant.