|
template<typename MatType > |
void | Fit (const MatType &input) |
| Function to fit features, to find out the min max and scale. More...
|
|
template<typename MatType > |
void | Transform (const MatType &input, MatType &output) |
| Function to scale features. More...
|
|
template<typename MatType > |
void | InverseTransform (const MatType &input, MatType &output) |
| Function to retrieve original dataset. More...
|
|
const arma::vec & | ItemMin () const |
| Get the Min row vector.
|
|
const arma::vec & | ItemMax () const |
| Get the Max row vector.
|
|
const arma::vec & | Scale () const |
| Get the Scale row vector.
|
|
template<typename Archive > |
void | serialize (Archive &ar, const uint32_t) |
|
A simple MaxAbs Scaler class.
Given an input dataset this class helps you to scale each feature by its maximum absolute value.
[z = x / max(abs(x))]
where max(abs(x)) is maximum absolute value of feature.
arma::mat input;
Load(
"train.csv", input);
arma::mat output;
MaxAbsScaler scale;
scale.Fit(input)
scale.Transform(input, output);
scale.InverseTransform(output, input);