preprocessor.standardizer package

Submodules

preprocessor.standardizer.standardizer module

This File contains the Standardizer class. To run this script uncomment or add the following lines in the [options.entry_points] section in setup.cfg:

console_scripts =
standardizer = standardizer.__main__:main

Then run python setup.py install which will install the command standardizer inside your current environment.

class preprocessor.standardizer.standardizer.Standardizer(conf)[source]

Bases: preprocessor.preprocessor.Preprocessor

The Standardizer preprocessor class

core()[source]
Core preprocessor task after starting the instance with the main method.
Decide from the arguments, what method to call.

Args: args (obj): command line parameters as objects

load_from_config()[source]

Standardize the dataset from a config file.

parse_args(args)[source]

Parse command line parameters

Parameters:args ([str]) – command line parameters as list of strings
Returns:command line parameters namespace
Return type:argparse.Namespace
standardize()[source]

Standardize the dataset.

store()[source]

Save preprocessed data and the configuration of the preprocessor.

preprocessor.standardizer.standardizer.run(args)[source]

Entry point for console_scripts

Module contents