Skip to content

Commit

Permalink
Remove integer and float from default transformers.
Browse files Browse the repository at this point in the history
  • Loading branch information
pvk-developer committed Mar 25, 2022
1 parent 165f775 commit 90a8e55
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions rdt/transformers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ def get_transformer_name(transformer):

DEFAULT_TRANSFORMERS = {
'numerical': FloatFormatter(missing_value_replacement='mean'),
'integer': FloatFormatter(missing_value_replacement='mean'),
'float': FloatFormatter(missing_value_replacement='mean'),
'categorical': FrequencyEncoder(),
'boolean': BinaryEncoder(missing_value_replacement='mode'),
'datetime': UnixTimestampEncoder(missing_value_replacement='mean'),
Expand Down

0 comments on commit 90a8e55

Please sign in to comment.