Skip to content

Commit 4529b96

Browse files
authored
Merge pull request #444 from JSchoeck/fix-deprecated-keyword-sparse
2 parents aad245d + 5f0b9de commit 4529b96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lazypredict/Supervised.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
categorical_transformer_low = Pipeline(
9696
steps=[
9797
("imputer", SimpleImputer(strategy="constant", fill_value="missing")),
98-
("encoding", OneHotEncoder(handle_unknown="ignore", sparse=False)),
98+
("encoding", OneHotEncoder(handle_unknown="ignore", sparse_output=False)),
9999
]
100100
)
101101

0 commit comments

Comments
 (0)