Skip to content

Commit 2718783

Browse files
committed
update example
1 parent 51ad597 commit 2718783

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

examples/bigtest/notebook.jl

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,18 @@ MLJTestIntegration.test_single_target_regressors(
3131
level=1
3232
)
3333

34-
fails, report =
34+
fails1, report1 =
3535
MLJTestIntegration.test_single_target_regressors(
3636
known_problems,
3737
ignore=true,
3838
level=3
3939
)
4040

41-
@test isempty(fails)
42-
report |> DataFrame
41+
fails1 |> DataFrame
42+
43+
#-
44+
45+
report1 |> DataFrame
4346

4447

4548
# # Classification
@@ -56,10 +59,18 @@ known_problems = [
5659

5760
MLJTestIntegration.test_single_target_classifiers(
5861
known_problems,
59-
level=1
62+
level=1,
63+
ignore=true,
6064
)
61-
fails, report =
65+
fails2, report2 =
6266
MLJTestIntegration.test_single_target_classifiers(
6367
known_problems,
68+
ignore=true,
6469
level=3,
6570
)
71+
72+
fails2 |> DataFrame
73+
74+
#-
75+
76+
report2 |> DataFrame

0 commit comments

Comments
 (0)