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.transformFields 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.transformationsClasses in org.tribuo.transform.transformations that implement TransformationModifier and TypeClassDescriptionfinal classA Transformation which bins values.classA feature transformation that computes the IDF for features and then transforms them with a TF-IDF weighting.final classA Transformation which takes an observed distribution and rescales it so all values are between the desired min and max.final classA Transformation which takes an observed distribution and rescales it so it has the desired mean and standard deviation.final classThis is used for stateless functions such as exp, log, addition or multiplication by a constant.