Interface Transformer

All Superinterfaces:
Serializable
All Known Implementing Classes:
SimpleTransform

public interface Transformer extends Serializable
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 Type
    Method
    Description
    double
    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.