A trait that describes a transformation for preprocessing continuous data.
The identity transform will return the input unchanged.
The identity transform will return the input unchanged. Created by cd on 14/05/2016.
min max normalisation will use columnwise minimum and columnwise maximum to normalise the data.
min max normalisation will use columnwise minimum and columnwise maximum to normalise the data. It will store the minimum and maximum values for columns in order to be able to invert the transform.
The data will be transformed using the empircal mean and approximate variance to create a spherical result.
The data will be transformed using the empircal mean and approximate variance to create a spherical result.
The standardised normalisation will store the parameters \hat{mu} and \hat{sigma}
Created by cd on 14/05/2016.
A trait that describes a transformation for preprocessing continuous data. The trait can be serialized and the implementation itself is responsible for storing the parameters for the transformation so that it can be used to modify new data examples.
Created by cd on 14/05/2016.