Package org.tribuo.transform
Interface Transformer
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
SimpleTransform
A fitted
Transformation
which can apply
a transform to the input value. Usually contains
feature specific information from the training data.
Transformers are serializable, and should only
be constructed by their TransformStatistics
.
-
Method Summary
Modifier and TypeMethodDescriptiondouble
transform
(double input) Applies the transformation to the supplied input value.
-
Method Details
-
transform
double transform(double input) Applies the transformation to the supplied input value.- Parameters:
input
- The value to transform.- Returns:
- The transformed value.
-