Skip to content

Commit

Permalink
double nrows in test case when nclasses is larger than 5
Browse files Browse the repository at this point in the history
  • Loading branch information
lijinf2 committed Mar 16, 2024
1 parent 39048c8 commit 57989ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cuml/tests/dask/test_dask_logistic_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -720,9 +720,9 @@ def test_standardization_on_scaled_dataset(
penalty = regularization[0]
C = regularization[1]
l1_ratio = regularization[2]
nrows = int(1e5)
ncols = ncol_and_nclasses[0]
n_classes = ncol_and_nclasses[1]
nrows = int(1e5) if n_classes < 5 else int(2e5)
ncols = ncol_and_nclasses[0]
n_info = ncols
n_redundant = 0
n_parts = 2
Expand Down

0 comments on commit 57989ef

Please sign in to comment.