Closed ArturoAmorQ closed 1 year ago
Fixes #476.
The fact that HistGradientBoostingClassifier does not support sparse data is not a problem when used along with OrdinalEncoder inside a pipelines. This PR simplifies the code by removing the sparse_threshold=0 parameter from the ColumnTransformer.
HistGradientBoostingClassifier
OrdinalEncoder
sparse_threshold=0
ColumnTransformer
Fixes #476.
The fact that
HistGradientBoostingClassifier
does not support sparse data is not a problem when used along withOrdinalEncoder
inside a pipelines. This PR simplifies the code by removing thesparse_threshold=0
parameter from theColumnTransformer
.