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

[REVIEW] Adding Support for CuPy 8.x and Fixing Tests #2910

Merged
Merged
Show file tree
Hide file tree
Changes from 2 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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@
- PR #2856: Fix LabelEncoder for filtered input
- PR #2855: Updates for RMM being header only
- PR #2880: Fix bugs in Auto-ARIMA when s==None
- PR #2877: TSNE exception for n_components > 2
- PR #2877: TSNE exception for n_components > 2
- PR #2879: Update unit test for LabelEncoder on filtered input
- PR #2910: Increasing tolerance of test_kbinsdiscretizer

# cuML 0.15.0 (Date TBD)

Expand Down
2 changes: 1 addition & 1 deletion python/cuml/test/test_preprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ def test_kbinsdiscretizer(blobs_dataset, n_bins, # noqa: F811
sk_r_X = transformer.inverse_transform(sk_t_X)

if strategy == 'kmeans':
assert_allclose(t_X, sk_t_X, ratio_tol=0.1)
assert_allclose(t_X, sk_t_X, ratio_tol=0.2)
else:
assert_allclose(t_X, sk_t_X)
assert_allclose(r_X, sk_r_X)
Expand Down