From d9776700106db69d09b5520ddd1f14657b130c6a Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Fri, 12 Jan 2024 15:20:28 +1300 Subject: [PATCH 1/2] update readme --- README.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/README.md b/README.md index 0c2eac4..11b12e2 100644 --- a/README.md +++ b/README.md @@ -29,16 +29,6 @@ MLJTestIntegration.test(models, data...; mod=Main, level=2, throw=false, verbosi For detailed documentation, run `using MLJTestIntegration; @doc MLJTestIntegration.test`. -For convenience, a number of specializations of this method are also provided: - -- `test_single_target_classifiers` -- `test_single_target_regressors` -- `test_single_target_count_regressors` -- `test_continuous_table_transformers` - -Query the document strings for details, or see -[examples/bigtest/notebook.jl](examples/bigtest/notebook.jl). - # Example: Testing models filtered from the MLJ model registry From a36d226eef51a524daa5c32a4bcb3c685360fa9f Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Fri, 12 Jan 2024 15:26:45 +1300 Subject: [PATCH 2/2] add missing compat for MLJModels --- Project.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Project.toml b/Project.toml index 9eaabec..7e50333 100644 --- a/Project.toml +++ b/Project.toml @@ -13,6 +13,7 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [compat] MLJ = "0.18, 0.19, 0.20" +MLJModels = "0.16" MLJTestInterface = "0.2.4" NearestNeighborModels = "0.2" Pkg = "<0.0.1, 1"