module documentation

Preprocess data.

Class Preprocessor Base class for preprocessing.
Function init_logger Initialize the logger.
Function main Undocumented
def init_logger(name='root', level=logging.INFO, log_file='log.txt'):

Initialize the logger.

Parameters
name:strname of the logger. Defaults to "root".
level:int, optionalCRITICAL: 50, ERROR: 40, WARNING: 30, INFO: 20, DEBUG: 10, NOTSET: 0
log_file:str, optionalpath to the log file. Defaults to "log.txt".
Returns
logging.Loggerthe logger object
def main():

Undocumented