Skip to content

Commit

Permalink
mroe logging of where we are in the feature transformation process
Browse files Browse the repository at this point in the history
  • Loading branch information
ClimbsRocks committed Sep 17, 2017
1 parent e839044 commit 9ef593c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions auto_ml/DataFrameVectorizer.py
Expand Up @@ -42,6 +42,7 @@ def get(self, prop_name, default=None):


def fit(self, X, y=None):
print('Fitting DataFrameVectorizer')

feature_names = []
vocab = {}
Expand Down
1 change: 1 addition & 0 deletions auto_ml/utils_data_cleaning.py
Expand Up @@ -116,6 +116,7 @@ def get(self, prop_name, default=None):
return default

def fit(self, X_df, y=None):
print('Running basic data cleaning')

# See if we should fit TfidfVectorizer or not
for key in X_df.columns:
Expand Down
1 change: 1 addition & 0 deletions auto_ml/utils_feature_selection.py
Expand Up @@ -44,6 +44,7 @@ def get(self, prop_name, default=None):


def fit(self, X, y=None):
print('Performing feature selection')


self.selector = get_feature_selection_model_from_name(self.type_of_estimator, self.feature_selection_model)
Expand Down
1 change: 1 addition & 0 deletions auto_ml/utils_scaling.py
Expand Up @@ -79,6 +79,7 @@ def get(self, prop_name, default=None):


def fit(self, X, y=None):
print('Performing feature scaling')
self.column_ranges = {}
self.cols_to_ignore = []

Expand Down

0 comments on commit 9ef593c

Please sign in to comment.