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 TransformationModifier and TypeFieldDescriptionTransformationMap.TransformationList.listThe list of transformations.Methods 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) 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
Classes 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.