public interface TrainableNormaliser extends Normaliser
Normaliser
s that need to be pre-trained in order to
compute relevant statistics to perform the actual normalisation operation.
For example, to compute z-score's the training operation would compute the
mean and variance of the data.Modifier and Type | Method and Description |
---|---|
void |
train(double[][] data)
Train the normaliser.
|
normalise, normalise
void train(double[][] data)
Normaliser.normalise(double[])
or Normaliser.normalise(double[][])
methods.data
- the data to normalise.