A simple Mean Normalization class. More...
Public Member Functions | |
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 | InverseTransform (const MatType &input, MatType &output) |
Function to retrieve original dataset. More... | |
const arma::vec & | ItemMax () const |
Get the Max row vector. More... | |
const arma::vec & | ItemMean () const |
Get the Mean row vector. More... | |
const arma::vec & | ItemMin () const |
Get the Min row vector. More... | |
const arma::vec & | Scale () const |
Get the Scale row vector. More... | |
template < typename Archive > | |
void | serialize (Archive &ar, const uint32_t) |
template < typename MatType > | |
void | Transform (const MatType &input, MatType &output) |
Function to scale features. More... | |
A simple Mean Normalization class.
Given an input dataset this class helps you to normalize each feature.
[z = x - average(x) / (max(x) - min(x))]
where x is an original value,z is the normalized value.
Definition at line 46 of file mean_normalization.hpp.
|
inline |
Function to fit features, to find out the min max and scale.
input | Dataset to fit. |
Definition at line 55 of file mean_normalization.hpp.
|
inline |
Function to retrieve original dataset.
input | Scaled dataset. |
output | Output matrix with original Dataset. |
Definition at line 91 of file mean_normalization.hpp.
|
inline |
Get the Max row vector.
Definition at line 102 of file mean_normalization.hpp.
|
inline |
Get the Mean row vector.
Definition at line 98 of file mean_normalization.hpp.
|
inline |
Get the Min row vector.
Definition at line 100 of file mean_normalization.hpp.
|
inline |
Get the Scale row vector.
Definition at line 104 of file mean_normalization.hpp.
|
inline |
Definition at line 107 of file mean_normalization.hpp.
|
inline |
Function to scale features.
input | Dataset to scale features. |
output | Output matrix with scaled features. |
Definition at line 73 of file mean_normalization.hpp.