Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update One-Hot Encoder doc #3600

Merged
merged 1 commit into from
Mar 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions python/cuml/preprocessing/encoders.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,8 @@ class OneHotEncoder(Base):
- dict/list : ``drop[col]`` is the category in feature col that
should be dropped.
sparse : bool, default=False
This feature was deactivated and will give an exception when True.
The reason is because sparse matrix are not fully supported by cupy
sparse : bool, default=True
This feature is not fully supported by cupy
yet, causing incorrect values when computing one hot encodings.
See https://github.com/cupy/cupy/issues/3223
dtype : number type, default=np.float
Expand Down