Uses of Interface
org.tribuo.transform.Transformation
Packages that use 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
Fields in org.tribuo.transform with type parameters of type TransformationMethods in org.tribuo.transform that return types with arguments of type TransformationModifier and TypeMethodDescriptionTransformationMap.getFeatureTransformations()
Gets the map of feature specific transformations.TransformationMap.getGlobalTransformations()
Gets the global transformations in this TransformationMap.Constructor parameters in org.tribuo.transform with type arguments of type TransformationModifierConstructorDescriptionTransformationList
(List<Transformation> list) TransformationMap
(List<Transformation> globalTransformations) TransformationMap
(List<Transformation> globalTransformations, Map<String, List<Transformation>> featureTransformations) TransformationMap
(List<Transformation> globalTransformations, Map<String, List<Transformation>> featureTransformations) TransformationMap
(Map<String, List<Transformation>> featureTransformations) -
Uses of Transformation in org.tribuo.transform.transformations
Classes in org.tribuo.transform.transformations that implement TransformationModifier and TypeClassDescriptionfinal class
A Transformation which bins values.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.