From ffb818bb7e02af52d1f16947ef52df549e2300c7 Mon Sep 17 00:00:00 2001 From: Lucas Pereira Date: Tue, 4 Nov 2025 09:40:16 -0300 Subject: [PATCH 1/3] update docstring --- src/constructors.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/constructors.jl b/src/constructors.jl index 8ebffa1..2581bb9 100644 --- a/src/constructors.jl +++ b/src/constructors.jl @@ -98,10 +98,10 @@ Available controls: $CONTROLS_LIST. # Options -- `controls=$DEFAULT_CONTROLS`: Controls are summarized at - [https://JuliaAI.github.io/MLJ.jl/dev/getting_started/](https://JuliaAI.github.io/MLJ.jl/dev/controlling_iterative_models/) +- `controls=$DEFAULT_CONTROLS`: Controls are summarized at the + "[Controls-provided](https://juliaai.github.io/MLJ.jl/dev/controlling_iterative_models/#Controls-provided)" section, but query individual doc-strings for details and advanced options. For creating your own - controls, refer to the documentation just cited. + controls, refer to the "[Custom controls](https://juliaai.github.io/MLJ.jl/dev/controlling_iterative_models/#Custom-controls)" section. - `resampling=Holdout(fraction_train=0.7)`: The default resampling holds back 30% of data for computing an out-of-sample estimate of performance (the "loss") for loss-based From 41e386b3fba9409ecfe4e5f118a3ca5376560d0d Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Wed, 5 Nov 2025 07:17:57 +1300 Subject: [PATCH 2/3] fix outdated GH action --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b5d87f..6dbd159 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - - uses: actions/cache@v1 + - uses: julia-actions/cache@v2 env: cache-name: cache-artifacts with: From d1032cbbb4debaf171ae7e32d694b84226d67060 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Wed, 5 Nov 2025 07:24:39 +1300 Subject: [PATCH 3/3] bump 0.6.4 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 86200d1..6bec05e 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "MLJIteration" uuid = "614be32b-d00c-4edb-bd02-1eb411ab5e55" authors = ["Anthony D. Blaom "] -version = "0.6.3" +version = "0.6.4" [deps] IterationControl = "b3c1a2ee-3fec-4384-bf48-272ea71de57c"