Skip to content
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
3 changes: 3 additions & 0 deletions python/cuml/tests/test_umap.py
Original file line number Diff line number Diff line change
Expand Up @@ -989,6 +989,9 @@ def test_umap_small_fit_large_transform():
@pytest.mark.parametrize("n_components", [2, 5])
@pytest.mark.parametrize("random_state", [None, 42])
@pytest.mark.parametrize("force_serial_epochs", [True, False])
@pytest.mark.xfail(
reason="With current heuristics, UMAP may produce outliers on GPUs with high SM counts."
)
def test_umap_outliers(
n_neighbors, n_components, random_state, force_serial_epochs
):
Expand Down
Loading