Fix a bug when using OneHotEncoder or HashingEncoder from category_encoders package. If the column names are not provided to these encoder, they will only encode columns with type object. For integer columns identified as categorical by intent resolver, it will not do anything.
This caused issues when generating submission for the house pricing kaggle competition. Without this fix, line 189 in test_smart.py will fail.
Fix a bug when using OneHotEncoder or HashingEncoder from category_encoders package. If the column names are not provided to these encoder, they will only encode columns with type object. For integer columns identified as categorical by intent resolver, it will not do anything.
This caused issues when generating submission for the house pricing kaggle competition. Without this fix, line 189 in test_smart.py will fail.
Related Issue
Description