Skip to content

Commit

Permalink
better sklearn ver test + table tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolinmorgan committed Dec 29, 2023
1 parent c61bae8 commit fde3d3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cu_cat/_table_vectorizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -821,11 +821,11 @@ def get_feature_names_out(self, input_features=None) -> List[str]:
all_trans_feature_names.extend(cols)
continue
try:
ct_feature_names = super().get_feature_names_out()
trans_feature_names = super().get_feature_names_out()
except:
pass
try:
ct_feature_names = super().get_feature_names()
trans_feature_names = super().get_feature_names()
except:
pass
all_trans_feature_names.extend(trans_feature_names)
Expand Down

0 comments on commit fde3d3e

Please sign in to comment.