Skip to content

Commit

Permalink
corrected readme
Browse files Browse the repository at this point in the history
  • Loading branch information
harveybc committed Apr 25, 2020
1 parent 1911cb7 commit 71bc53f
Show file tree
Hide file tree
Showing 3 changed files with 627 additions and 3 deletions.
4 changes: 2 additions & 2 deletions preprocessor/preprocessor.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
""" This File contains the Preprocessor class, it is the base class for DataTrimmer, FeatureSelector, Standardizer and MSSADecomposer classes. """
""" This File contains the Preprocessor class, it is the base class for DataTrimmer, FeatureSelector, Standardizer and SlidingWindow classes. """

import argparse
import sys
Expand All @@ -18,7 +18,7 @@


class Preprocessor(PreprocessorBase):
""" Base class for DataTrimmer, FeatureSelector, Standardizer, MSSADecomposer. """
""" Base class for DataTrimmer, FeatureSelector, Standardizer, SlidingWindow. """

def main(self, args):
""" Starts an instance. Main entry point allowing external calls.
Expand Down
2 changes: 1 addition & 1 deletion preprocessor/preprocessor_base.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
""" This File contains the Preprocessor class, it is the base class for DataTrimmer, FeatureSelector, Standardizer, MSSADecomposer. """
""" This File contains the Preprocessor class, it is the base class for DataTrimmer, FeatureSelector, Standardizer, SlidingWindow. """

import argparse
import sys
Expand Down

0 comments on commit 71bc53f

Please sign in to comment.