mlpack
Public Member Functions | List of all members
mlpack::data::MeanNormalization Class Reference

A simple Mean Normalization class. More...

#include <mean_normalization.hpp>

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 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 & ItemMean () const
 Get the Mean row vector.
 
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)
 

Detailed Description

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.

arma::mat input;
Load("train.csv", input);
arma::mat output;
// Fit the features.
MeanNormalization scale;
scale.Fit(input)
// Scale the features.
scale.Transform(input, output);
// Retransform the input.
scale.InverseTransform(output, input);

Member Function Documentation

◆ Fit()

template<typename MatType >
void mlpack::data::MeanNormalization::Fit ( const MatType &  input)
inline

Function to fit features, to find out the min max and scale.

Parameters
inputDataset to fit.

◆ InverseTransform()

template<typename MatType >
void mlpack::data::MeanNormalization::InverseTransform ( const MatType &  input,
MatType &  output 
)
inline

Function to retrieve original dataset.

Parameters
inputScaled dataset.
outputOutput matrix with original Dataset.

◆ Transform()

template<typename MatType >
void mlpack::data::MeanNormalization::Transform ( const MatType &  input,
MatType &  output 
)
inline

Function to scale features.

Parameters
inputDataset to scale features.
outputOutput matrix with scaled features.

The documentation for this class was generated from the following file: