Skip to content

Commit

Permalink
better dc default
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolinmorgan committed Jan 2, 2024
1 parent 93ba27a commit bab7c02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions graphistry/feature_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ def process_dirty_dataframes(
all_transformers = data_encoder.transformers
if feature_engine == "cu_cat":
logger.info(f"-Shape of [[cu_cat fit]] data {X_enc.shape}")
else: # if feature_engine == "dirty_cat":
else:
logger.info(f"-Shape of [[dirty_cat fit]] data {X_enc.shape}")
logger.debug(f"-Transformers: \n{all_transformers}\n")
logger.debug(
Expand Down Expand Up @@ -2684,7 +2684,7 @@ def featurize(

if feature_engine == "cu_cat":
assert_imported_cucat()
else: # if feature_engine == "dirty_cat":
else:
assert_imported_min()

if inplace:
Expand Down

0 comments on commit bab7c02

Please sign in to comment.