Skip to content

Commit

Permalink
test(frontend): fix up some of the comments and leave todo for testin…
Browse files Browse the repository at this point in the history
…g shuffle param in KFold contructor
  • Loading branch information
Ishticode committed Aug 31, 2023
1 parent 2fa8095 commit 2c0bc53
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_sklearn_kfold_split(
helpers.test_frontend_method(
init_input_dtypes=input_dtype,
init_all_as_kwargs_np={
"n_splits": 2,
"n_splits": 2, # todo test for shuffle
},
method_input_dtypes=input_dtype,
method_all_as_kwargs_np={
Expand Down Expand Up @@ -66,11 +66,11 @@ def test_sklearn_kfold_get_n_split(
helpers.test_frontend_method(
init_input_dtypes=input_dtype,
init_all_as_kwargs_np={
"n_splits": 2, # this arg only for compatibility
"n_splits": 2, # todo test for shuffle
},
method_input_dtypes=input_dtype,
method_all_as_kwargs_np={
"X": x[0],
"X": x[0], # this arg only for compatibility
},
frontend_method_data=frontend_method_data,
init_flags=init_flags,
Expand Down

0 comments on commit 2c0bc53

Please sign in to comment.